summaryrefslogtreecommitdiff
path: root/doc/tips
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-04-21 15:11:59 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-04-21 15:11:59 -0400
commit6f2626801bb0b70ea2c652ffad03138178cefe4e (patch)
tree4d890519cd1160f332575f4fcc07d5e47b3a6747 /doc/tips
parent627e50f6bc3c60a31e67695047415c2d2e072e3d (diff)
update to work better with git's change to not push matching branches by default
Diffstat (limited to 'doc/tips')
-rw-r--r--doc/tips/centralized_git_repository_tutorial.mdwn8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tips/centralized_git_repository_tutorial.mdwn b/doc/tips/centralized_git_repository_tutorial.mdwn
index 9f2d15cb4..e646ed0ee 100644
--- a/doc/tips/centralized_git_repository_tutorial.mdwn
+++ b/doc/tips/centralized_git_repository_tutorial.mdwn
@@ -55,9 +55,9 @@ Feel free to rename the files, etc, using normal git commands:
# git mv kitenet.net_~joey_screencasts_git-annex_coding_in_haskell.ogg git-annex_coding_in_haskell.ogg
# git commit -m 'better filenames'
-Now push your changes back to the central repository. This first time,
-remember to push the git-annex branch, which is used to track the file
-contents.
+Now push your changes back to the central repository. As well as pushing
+the master branch, remember to push the git-annex branch, which is used to
+track the file contents.
# git push origin master git-annex
To git@github.com:joeyh/techtalks.git
@@ -128,7 +128,7 @@ desired.
After you use git-annex to move files around, remember to push,
which will broadcast its updated location information.
- # git push
+ # git push origin master git-annex
## take it farther