Tuesday, March 11, 2014

Pull from and Push to the current branch

Following command will setup your git to pull the current branch on remote

git config --global pull.default current

Following command will setup your git to push into the current branch on remote

git config --global push.default current

No comments:

Post a Comment