Re: Approach for collaborative branches
From: Gary Pickrell <hidden>
Date: 2016-06-15 22:47:50
Thank you Matthieu,
It did exactly what I wanted and I wouldn't have figured it out by myself.
-Gary
Matthieu Moy wrote:Gary Pickrell [off-list ref] writes:quoted
1) Clone the repository on Ubuntu 2) Made an Ubuntu branch 3) Made my changes to the code. Added files...ect 4) Used git push origin Ubuntu to push the changes to the repository I'm unable to see my Ubuntu changes on my windows machine. How should I proceed?On the windows machine, you should do first git fetch this will tell you about the new branch if you didn't fetch it already. If it's called Ubuntu remotely, it's probably called origin/Ubuntu on your local repository after doing a fetch. Therefore, you can now do git merge origin/Ubuntu Now, you probably also want your local branch to be named the same way on both machines. One way to do that is to create a branch "foo" on the repository, then on both sides, fetch it and do git checkout --track origin/foo this will create a local branch foo, and tell git that further "pull" should take their changes from origin/foo.