Last Updated: February 25, 2016
·
822
· davidetarga

Helpful git aliases

Some smart git aliases to simplify your job.

For the commit command use ci:

git config --global alias.ci commit

For the diff command use d:

git config --global alias.d diff

For the log command use l:

git config --global alias.l log

For the status command use s:

git config --global alias.s status

Hope this helps!