You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create Tags (from SO), prints a list of commands that create the tags:
git for-each-ref --format="%(refname:short) %(objectname)" refs/remotes/upstream/tags | cut -d / -f 3- |
while read ref
do
echo git tag -a $ref -m '"import tag from svn"'
done
Push Tags
git push --tags
Get Latest from SVN
git svn fetch
git merge upstream/trunk
==> create tags again
The text was updated successfully, but these errors were encountered:
Initial clone
Create Tags (from SO), prints a list of commands that create the tags:
Push Tags
Get Latest from SVN
The text was updated successfully, but these errors were encountered: