首页 热点专区 小学知识 中学知识 出国留学 考研考公
您的当前位置:首页正文

保持分支与master sync

2024-12-07 来源:要发发知识网

you just do

git checkout master
git pull
git checkout mobiledevicesupport
git merge master

to keep mobiledevicesupport in sync with master

then when you're ready to put mobiledevicesupport into master, first merge in master like above, then ...

git checkout master
git merge mobiledevicesupport
git push origin master
显示全文