Skip to content

Commit 24390b8

Browse files
committed
git push --all does not push tags
It is incorrect that git push origin -all would push tags on the git server. Actually you have to do git push --tags to also push the tags.
1 parent b441e68 commit 24390b8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

book/09-git-and-other-scms/sections/import-svn.asc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ Because you want all your branches and tags to go up, you can now run this:
104104
[source,console]
105105
----
106106
$ git push origin --all
107+
$ git push origin --tags
107108
----
108109

109110
All your branches and tags should be on your new Git server in a nice, clean import.

0 commit comments

Comments
 (0)