How to merge local branches with remote tags in github?
认证0级讲师
If you want to update the branch, then you create a certain Tag checkout as a branch and then merge it into the local branch
git checkout -b local-tag tag-v1.1 git checkout local-branch git merge local-tag
If you want to update the tags, just re-tag them
git checkout local-branch git tag -f tag-v1.1 git push
git pushPush the local branch to the remote branch, and then execute git merge or git rebase
Give you a simple operation method, portal: git - simple guide
If you want to update the branch, then you create a certain Tag checkout as a branch and then merge it into the local branch
If you want to update the tags, just re-tag them
git push
Push the local branch to the remote branch, and then execute git merge or git rebase
Give you a simple operation method, portal: git - simple guide