Tag: git

Aliasing git commands

Yep, you can do it in git. So if you want to have customized names for some git commands, you can change it through the git config file. Let’s say instead of running this command to unstage a file: git reset HEAD config/environment.rb you can alia…

How to browse your git repository locally

found this at from a post in Forrst by Jackhq and I was so amazed that you can actually browse your git repo using your browser. Here’s how you do it: cd [git repo] git instaweb –httpd webrick and this will automatically use your browser to open …