From: Ingo Molnar <mingo@elte.hu>
To: git@vger.kernel.org
Subject: "git revert" feature suggestion: revert the last commit to a file
Date: Thu, 5 Feb 2009 21:21:04 +0100 [thread overview]
Message-ID: <20090205202104.GA11267@elte.hu> (raw)
I frequently come across this workflow pattern: i queue up some new change
in a topic brach, and there's a test failure within the next 60 minutes or
so. I know which file causes the breakage - say kernel/softlockup.c - but i
dont know the precise commit ID. I want to revert the change in the
integration branch as quickly as possible via a command - without having to
wade through 'git log' info and cut&paste-ing commit IDs.
I usually know the topic branch name where the breakage originates from, so
i can do this in the integration branch:
git revert core/softlockup
and it does the right thing and the tests can continue while i take more
time in the topic branch to repair the damage there. (at which point i can
integrate the fixed/updated commit on top of the reverted commit in the
integration branch.)
But often i have other changes queued up in that topic branch as well - and
the best, most finegrained information i have about the identity of the
commit is the filename it went into.
So i have to do something like:
git revert $(git log -1 --pretty=format:"%h" kernel/softlockup.c)
(tucked away in a tip-revert-file helper script.)
But it would be so much nicer if i could do the intuitive:
git revert kernel/softlockup.c
Or at least, to separate it from revision names cleanly, something like:
git revert -- kernel/softlockup.c
Would something like this be possible in generic Git? It would sure be a
nice little touch that i would make use of frequently.
Or is it a bad idea perhaps? Or have i, out of sheer ignorance, failed to
discover some nice little shortcut that can give me all of this already?
Thanks,
Ingo
next reply other threads:[~2009-02-05 20:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-05 20:21 Ingo Molnar [this message]
2009-02-05 20:50 ` "git revert" feature suggestion: revert the last commit to a file Johannes Schindelin
2009-02-05 20:50 ` Junio C Hamano
2009-02-05 20:54 ` Randy Dunlap
2009-02-05 21:00 ` Ingo Molnar
2009-02-05 21:03 ` Randy Dunlap
2009-02-05 21:46 ` Ingo Molnar
2009-02-05 21:00 ` Ingo Molnar
2009-02-06 0:15 ` Junio C Hamano
2009-02-06 0:41 ` Johannes Schindelin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090205202104.GA11267@elte.hu \
--to=mingo@elte.hu \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).