From: Matthieu Moy <Matthieu.Moy@grenoble-inp.fr>
To: Patrick Doyle <wpdster@gmail.com>
Cc: git <git@vger.kernel.org>
Subject: Re: OK, how should I have done this...
Date: Mon, 22 Nov 2010 17:14:25 +0100 [thread overview]
Message-ID: <vpqtyj9xrmm.fsf@bauges.imag.fr> (raw)
In-Reply-To: <AANLkTi=uxRfsy2vG+4CBJv8Vhjrr2roVOXeNLvPA+6U+@mail.gmail.com> (Patrick Doyle's message of "Mon\, 22 Nov 2010 09\:22\:21 -0500")
Patrick Doyle <wpdster@gmail.com> writes:
> On Mon, Nov 22, 2010 at 8:34 AM, Matthieu Moy
> <Matthieu.Moy@grenoble-inp.fr> wrote:
>> Patrick Doyle <wpdster@gmail.com> writes:
>>
>>> I just checked in modifications to 1/2 dozen or so files in a single
>>> commit and pushed them to my server.
>>
>>> So now I want to figure out which modification(s) in which file(s)
>>> introduced the problem.
>>
>> 'didn't read all the details of your message, but the way I'd have
>> done this would be with stash --keep-index:
>>
>> (untested)
>>
>> git checkout the-one-that-works # staging area and tree checked out.
>> git reset the-one-that-doesnt # just change the staging area
>> git add -p
>> # pick some commits
>> git stash --keep-index
>> # run some tests
>> # if test fail then
>> # happy, "git diff --staged" tells you what.
>> # else
>> git commit -m "first modification"
>> git stash pop
>> # goto the git add -p step.
>> # fi
>
> That looks kinda scary to me. The last time I played with git-reset,
> I ended up losing(*) the commit at the head of my branch.
In general, you should think twice before doing this kind of surgery.
But :
* The git checkout at the beginning brings you in detached HEAD state,
so you're not going to damage the branches themselves. The
intermediate commits you'll do will be unreachable unless you create
a ref explicitely. So, "git checkout branch-name" will bring you
back to your branch when you're done.
* Git has this great "reflog" thing, so even if you mess up your
branch, it's still in the reflog.
* Hopefully, you're working on a local clone, and really important
stuff have already been pushed to a safer place, so the very worst
thing that can happen is to start over with a fresh clone.
In my proposal, *if* you end up with a set of small commit that you
prefer over your initial big commit, you can chose to record it in
history (either git update-ref, dangerous if you've already pushed
anything, or git merge, to keep both the big commit and the small ones
in the history).
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
next prev parent reply other threads:[~2010-11-22 16:18 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-22 13:22 OK, how should I have done this Patrick Doyle
2010-11-22 13:34 ` Matthieu Moy
2010-11-22 14:22 ` Patrick Doyle
2010-11-22 14:29 ` Tay Ray Chuan
2010-11-22 16:14 ` Matthieu Moy [this message]
2010-11-23 0:05 ` Junio C Hamano
2010-11-23 0:17 ` Patrick Doyle
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=vpqtyj9xrmm.fsf@bauges.imag.fr \
--to=matthieu.moy@grenoble-inp.fr \
--cc=git@vger.kernel.org \
--cc=wpdster@gmail.com \
/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).