Aug
13
2014
Aug
12
2013
I use this all the time, but can never remember the steps:
cd ~/Dropbox/Git git init --bare Project cd ~/Development/Project git init git al git i 'First commit' git remote add dropbox ~/Dropbox/Git/Project git p dropbox master
Edit 2014-08-13:
...
Mar
15
2013
I added a new section to my .gitconfig
file today and realized that looking
at it as a whole it's a bit overwhelming (40 commands). However, considering
it's history it just a natural evolution from my first file and simple usage
of git to now. I don't remember exactly what my first .gitconfig
looked
like, but I can guess. It pretty much only included the most basic day to day
commands:
ad = add br = branch ci = commit lg = log mr = merge co = checkout st = status...