How to merge local branch with remote tag in github?
PHP中文网
PHP中文网 2017-05-02 09:27:53
0
3
637

How to merge local branches with remote tags in github?

PHP中文网
PHP中文网

认证0级讲师

reply all(3)
迷茫

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
PHPzhong

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template