Archive for March, 2010
This is the workflow that we are currently using for work with remote branches. Pushing local branch to remote git push origin my-branch:refs/heads/my-branch git config branch.my-branch.remote origin git config branch.my-branch.merge refs/heads/my-branch That will create a new branch in the remote repository and the appropriate ref. Pulling from remote to local branch Before checking out, we need to fetch the branch, because our [ READ MORE ]