15 lines
147 B
Bash
15 lines
147 B
Bash
git push --tags
|
|
|
|
git checkout v1.0
|
|
git push
|
|
|
|
git checkout v1
|
|
git merge v1.0
|
|
git push
|
|
|
|
git checkout master
|
|
git merge v1
|
|
git push
|
|
|
|
git checkout v1.0
|