[PATCH] D79964: Update 'git push' command in GettingStarted guide

Diego Caballero via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 14 14:08:40 PDT 2020


dcaballe created this revision.
dcaballe added reviewers: jyknight, jlebar, mehdi_amini.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

'git push' command, without any other arguments, can do different
things depending on the local configuration of Git. However, it
won't push your local 'arcpatch-D<Revision>' to the remote 'master'
branch by default. This patch updates the 'git push' command with
the extra arguments needed to commit 'arcpatch-D<Revision>' to the
remote 'master' branch.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D79964

Files:
  llvm/docs/Phabricator.rst


Index: llvm/docs/Phabricator.rst
===================================================================
--- llvm/docs/Phabricator.rst
+++ llvm/docs/Phabricator.rst
@@ -215,7 +215,7 @@
   git pull --rebase origin master
   git show # Ensure the patch looks correct.
   ninja check-$whatever # Rerun the appropriate tests if needed.
-  git push
+  git push origin arcpatch-D<Revision>:master
 
 Or
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79964.264085.patch
Type: text/x-patch
Size: 395 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200514/c426c733/attachment.bin>


More information about the llvm-commits mailing list