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

Diego Caballero via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 20 10:22:52 PDT 2020


dcaballe updated this revision to Diff 265288.
dcaballe added a comment.

It sounds good, thanks.
Replacing 'origin' with 'https://github.com/llvm/llvm-project.git' in git pull and push commands.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D79964/new/

https://reviews.llvm.org/D79964

Files:
  llvm/docs/Phabricator.rst


Index: llvm/docs/Phabricator.rst
===================================================================
--- llvm/docs/Phabricator.rst
+++ llvm/docs/Phabricator.rst
@@ -212,10 +212,10 @@
 
 ::
 
-  git pull --rebase origin master
+  git pull --rebase https://github.com/llvm/llvm-project.git master
   git show # Ensure the patch looks correct.
   ninja check-$whatever # Rerun the appropriate tests if needed.
-  git push
+  git push https://github.com/llvm/llvm-project.git HEAD:master
 
 Or
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79964.265288.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200520/14229dd1/attachment.bin>


More information about the llvm-commits mailing list