This commit is contained in:
Joey Hess 2012-06-05 18:54:25 -04:00
parent 40456953c2
commit b5c617b623

View file

@ -83,6 +83,12 @@ Many races need to be dealt with by this code. Here are some of them.
update-index` to manually put the symlink into the index without git
looking at what's currently on disk.
* Link is moved, fixed link is written by fix event, but then that is
removed by the user and replaced with a file before the event finishes.
Currently unfixed: `git add` will be run on the file. Basically same
effect as previous race above.
* File is removed and then re-added before the removal event starts.
Not a problem; The removal event does nothing since the file exists,
@ -92,3 +98,4 @@ Many races need to be dealt with by this code. Here are some of them.
Not a problem; The removal event removes the old file from the index, and
the add event adds the new one.