Creating Git Aliases

By  on  

I create shortcuts for everything. I create variables which act as text shortcuts, shortcuts in TextMate to generate CSS/JS/HTML, and bash scripts so I don't have to type in the same commands over and over again. So why should version control software be any different? I commit and push religiously so I create Git aliases to save myself a few keystrokes.

Sample Aliases

#make "com" alias for "commit"
git config alias.com commit

#make "co" alias for checkout
git config alias.co checkout

#make "br" alias for branch
git config alias.br branch

# When you want to see just the differences of one function in one file in two different commits
git config alias.funcdiff '!sh -c "git show \"\$1:\$3\" | sed -n \"/^[^ \t].*\$4(/,/^}/p\" > .tmp1 &&
        git show \"\$2:\$3\" | sed -n \"/^[^ \t].*\$4(/,/^}/p\" > .tmp2 &&
        git diff --no-index .tmp1 .tmp2"' -

These are just some sample Git aliases. You can view more detailed (and by detailed I mean brain-numbing) examples of git aliases at the Git Wiki.

Recent Features

  • By
    I’m an Impostor

    This is the hardest thing I've ever had to write, much less admit to myself.  I've written resignation letters from jobs I've loved, I've ended relationships, I've failed at a host of tasks, and let myself down in my life.  All of those feelings were very...

  • By
    Serving Fonts from CDN

    For maximum performance, we all know we must put our assets on CDN (another domain).  Along with those assets are custom web fonts.  Unfortunately custom web fonts via CDN (or any cross-domain font request) don't work in Firefox or Internet Explorer (correctly so, by spec) though...

Incredible Demos

  • By
    Image Reflections with CSS

    Image reflection is a great way to subtly spice up an image.  The first method of creating these reflections was baking them right into the images themselves.  Within the past few years, we've introduced JavaScript strategies and CANVAS alternatives to achieve image reflections without...

  • By
    MooTools dwCheckboxes Plugin

    Update / Fix: The checkboxes will no longer toggle when the "mouseup" event doesn't occur on a checkbox. Every morning I wake up to a bunch of emails in my Gmail inbox that I delete without reading. I end up clicking so many damn checkboxes...

Discussion

  1. Nice! I use ci for commit though, more like Subversion. I also have di for diff, st for status and sta for stash.

  2. Terry

    I’m trying to get the funcdiff alias created. When I try to call it with something like:

    git funcdiff “rel\path\to\file” functionName
    or
    git funcdiff HEAD~2 HEAD “rel\path\to\file” functionName

    both give me an error like:
    fatal: Path ‘funcitonName’ does not exist in ‘sha1-2’.
    fatal: Invalid object name ‘rel\path\to\file’.

    I’ve Googled everywhere for anyone using this alias to see a sample syntax, but no one has one. Have you used it successfully?

  3. Dan

    You can make aliases for branch name, too. For example:

    git symbolic-ref head HEAD

  4. Peter

    Dan, command

    git symbolic-ref head HEAD

    ruins git repo in windows. Because it overwrites “HEAD” with “head” in “.git” directory

    For ones, that tried this: just rename the file back

  5. Shahzeb

    Very useful, thanks!

  6. Thanks for the commands,
    I need to know how to create an alias for paths.
    For example if I need to write “git push PATH” instead of “git push gitolite@codex…”
    Regards

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!