Verbose Logging

software development with some really amazing hair

T + G I F R

Git Things I Always Forget

· · Posted in Programming
Tagged with

Create a branch locally, and push it to origin:

git checkout -b branchname
git push origin branchname

Get at that branch from elsewhere:

git checkout -t -b branchname origin/branchname