Re: [ext] Re: bug: `git pull` does not clean up after itself if it fails

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Peff,

thanks for your reply. You're right, the problem happens during merge.

Since merge already aborts if the index doesn't match HEAD though, couldn't it be as simple as saving the state of the worktree and then either restoring it in case of failure or applying the diff in case of success?

In terms of git commands I think the following would work:

When `git merge` is run first run `git stash --all` then `git merge` as usual.

If there are non-conflict errors: `git checkout .` and `git clean -f;

If there are no errors `git stash pop`.


On 7/17/24 07:55, Jeff King wrote:
On Mon, Jul 15, 2024 at 01:19:32PM +0200, Nikolai Zaki wrote:

What did you do before the bug happened? (Steps to reproduce your issue)
In your local repo have a directory that you cannot write to.
Pull from a remote that has changes/new files in that directory.

What did you expect to happen? (Expected behavior)
The pull fails and the local repo in the same state as before.

What happened instead? (Actual behavior)
All changes to writeable files are applied and all new files in writeable
dirs are added.
The local HEAD however remained the same.

What's different between what you expected and what actually happened?
A failed `git pull` inadvertently creates changes and untracked files.
A pull is basically fetch followed by merge. So I'd expect us to fail in
the merge step, at which point pull would generally leave the state
as-is, because merge failures tend to be conflicts.

So I guess doing what you expect would require a merge which hits a
non-conflict error (like an unwriteable directory) to clean up after
itself. That's probably not impossible, but it may be rather tricky,
especially if we are concerned about unrelated changes in the working
tree.

-Peff
--
Best,
Nikolai




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux