From a7c35d696158d0e40f15ebc5d04f7e1114cc800b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 21 Apr 2015 15:11:59 -0400 Subject: [PATCH] update to work better with git's change to not push matching branches by default --- doc/tips/centralized_git_repository_tutorial.mdwn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tips/centralized_git_repository_tutorial.mdwn b/doc/tips/centralized_git_repository_tutorial.mdwn index 9f2d15cb40..e646ed0eee 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