diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-16 08:33:10 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-16 08:33:10 -0500 |
commit | 595944d46483112a9348df240cfb84a3ec2246f8 (patch) | |
tree | 8a65278cdc9fccf7a2b2984da9a3d0bbbd94c9f6 | |
parent | 0e9dd2a28669a4d42c4a3828dbd047937acd776c (diff) | |
download | mediagoblin-595944d46483112a9348df240cfb84a3ec2246f8.tar.lz mediagoblin-595944d46483112a9348df240cfb84a3ec2246f8.tar.xz mediagoblin-595944d46483112a9348df240cfb84a3ec2246f8.zip |
Recommending --set-upstream when doing a git push to a feature branch.
This is nice because it means git will tell you when your branch is
ahead/behind by several commits, assuming you keep working on it.
-rw-r--r-- | docs/git.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/git.rst b/docs/git.rst index 8eb038b2..c3f7ccce 100644 --- a/docs/git.rst +++ b/docs/git.rst @@ -136,7 +136,7 @@ Slartibartfast does the following: 4. Slartibartfast pushes his changes to his clone (the remote is named ``origin``):: - git push origin issue_42 + git push origin issue_42 --set-upstream 5. Slartibartfast adds a comment to issue 42 with the url for his repository and the name of the branch he put the code in. He also |