Git - gwenn/hypomnemata GitHub Wiki

CNTLM Proxy

export HTTPS_PROXY=localhost:3128

fresh branch

git co -b <newbranch> xxx/master

publish local branch (new remote branch)

git push origin <newbranch>
git push -u origin <branch>

stash

git stash save <name>

interactive

# stage to index
git add -p
# index to stage
git reset -p
# discard hunk
git checkout -p
⚠️ **GitHub.com Fallback** ⚠️