How to keep a branch synchronized/updated with master?
Yes, 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 and that’s it. The assumption here is that … Read more