Git

//config

git config --global user.name "John Doe"

git config --global user.email johndoe@example.com

//

git clone ssh://o.dontsov@106.125.46.94:29418/3dfx/ProjectName

//show all branches

git fetch

git branch -a

//clean

git clean -xn

git checkout -- .

git clean -f -d

git status

//

git push origin HEAD:refs/for/master

git push origin HEAD:refs/changes/номер

//

git reset HEAD^1

git status

//stash

git stash

git stash list

git stash apply

git stash drop

/who /change each string in file

git blame -L 12,22 simplegit.rb