Below are git commands I find myself using over and over. clone repository git clone https://github.com/tinymce/tinymce-dist.git Add existing git files to remote git repo cd /path/to/my/repo git remote add origin https://lostinkali@bitbucket.org/lostinkali/flightstats.git git push -u origin –all # pushes up the repo and its refs for the first time git push -u origin –tags # pushes…
Category: General
Going Faster Tip #6
Use tools for other purposes than they are intended for. For example operating on large number of files can be a challenge is C#. Tools like Ant, NAnt, Rake are designed for this purpose.
Going Faster Tip #5
Automate, automate, automate.
Going Faster Tip #4
When coding, always prefer the keyboard over the mouse.