Commit Briefs



f35fa46a4c Stefan Sperling

add symlink support to 'got update'


0ab20ee9ea Stefan Sperling

fix handling of symlinks to a nonexistent target


8ba819a354 Stefan Sperling

let 'got checkout' create symlinks in a work tree




3143d852d7 Stefan Sperling

fix ignores when a path is passed to 'got status'

Problem reported by semarie, who also provided initial regression test code. ok semarie


054041d073 Stefan Sperling

replace the update_blob_fileindex_entry() helper function

This makes it easier to tell in which code paths we are expecting to handle a potential 'ie' NULL pointer and avoids a pointless search of the file index.


5a58a42470 Stefan Sperling

plug a memory leak in delete_blob()


5036ab18bf Stefan Sperling

make 'got update' skip conflicted files

ok millert@





15341bfd54 Tracey Emery

trim directories in got remove -R

This is a racy solution that needs to be properly implemented in the future. ok stsp


de05890fef Stefan Sperling

fix histedit 'rebase commit ID mismatch' error when splitting a commit

Commit IDs on histedit's temporary branch can change arbitrarily because the user may create new commits on this branch while editing past commits. So there is no point in trying to verify these IDs like we do during rebase. Add a test case which demonstrates the problem.





a46b9f33fb Stefan Sperling

fix a bug where 'got revert -R' failed on added subtrees

The command could fail with "got: no such entry found in tree". This problem is reproduced by the regression test added in this commit. This happened because file index entries were processed in the wrong order by diff_fileindex_dir(). To fix this, keep removed entries in the RB tree and skip them when the file index is written out, rather than removing entries from the RB tree immediately causing side-effects for RB_NEXT and friends.


867630bb8f Stefan Sperling

Sleep for one nanosecond after syncing the file index to disk

Ensures that files modified after got exits have a different timestamp from the one which was recorded in the file index. Previously, 'got status' did not always detect such files as modified. Problem reported by Steven McDonald.


bb51a5b4af Stefan Sperling

add -E option to 'got checkout' allowing use of a non-empty work tree path

needed by and ok kn@


5aa813935b Stefan Sperling

add copyright year for files already touched in 2020


e51d7b55a3 Stefan Sperling

prevent rebase with an out-of-date work tree


7f47418fd4 Stefan Sperling

make 'got checkout' and 'got update' work with read-only repositories

but warn users about the garbage collection problem