Author:
erics , October 29th, 2020
Show All Branches, Local and Remote
Show Local Branches
Show Remote Branches
To fetch all remote branches locally
git branch - r | grep - v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote ; do git branch -- track "${remote#origin/}" "$remote" ; done
git fetch -- all
git pull -- all
Categories: How-To's , Technology Tags: All , Branch , Branches , Display , git , git branch , git branch -a , git fetch , git pull , local , remote , Show , track , view
| No comments
Author:
erics , August 2nd, 2018
git checkout -f
Categories: How-To's , Technology Tags: Branch , Checkout , Discard , git , git branch , git checkout , howto , Revert , tips , Undo
| No comments
Author:
erics , January 31st, 2018
Rename the old branch locally: git branch -m oldBranch newBranch Delete the old branch remotely: git push origin :oldBranch Push up the new branch, and make the local branch track with the new remote branch: git push –set-upstream origin newBranch
Categories: How-To's , Technology Tags: Branch , git , git branch , howto , local , remote , Rename , rename branch , tips
| No comments