2b3894a37b13b2d0f6f4ef5b8bc15e81677d9f1b
git
change origin url
git remote set-url origin <origin-url>
Create new branch from uncommited
git switch -c <new-branch>
# or
git checkout -b <new-branch>
Credentials
git config --global credential.helper cache
# Cache for 1 hour
git config --global credential.helper "cache --timeout=3600"
# Cache for 1 day
git config --global credential.helper "cache --timeout=86400"
# Cache for 1 week
git config --global credential.helper "cache --timeout=604800"