Git
Git Introduction / Tutorial
git clone someurl
git pull
git commit file -m "holla" git push
git stash # stacks away git stash apply # gets stash back
git branch --track thebranch origin/thebranch
switch to a remote branch
git clone someurl
git pull
git commit file -m "holla" git push
git stash # stacks away git stash apply # gets stash back
git branch --track thebranch origin/thebranch
switch to a remote branch