* stupid git alias trick
@ 2011-07-21 23:06 Eric Blake
0 siblings, 0 replies; only message in thread
From: Eric Blake @ 2011-07-21 23:06 UTC (permalink / raw)
To: Git Mailing List
Thought I'd share this one, in case anyone else finds it useful.
Every so often, I find myself typing "git ", then pausing while thinking
of which command I meant to run (commit, rebase, push?), then realizing
that I actually need to make more edits in my editor first. On
completion of that task, I come back to terminal and type "git
blah<ENTER>" out of habit, not realizing that I'm not starting from an
empty prompt. Of course, "git git blah" is not a valid command, but if
you have help.autocorrect configured, this ends up auto-correcting to
"git init blah" instead, and while that often ends up failing due to
unexpected arguments for 'git init', I've actually had scenarios where
it succeeds at doing something, but certainly not the "blah" I had in mind.
But thanks to aliases, this is no longer a problem:
git config --global alias.git '!git'
and now, typing "git git blah" results in the execution of the git
alias, which in turn runs "git blah" like I intended. Yay for:
git git git git git git git git git git status
--
Eric Blake eblake@redhat.com +1-801-349-2682
Libvirt virtualization library http://libvirt.org
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-07-21 23:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-21 23:06 stupid git alias trick Eric Blake
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).