Commit Briefs


Stefan Sperling

add symlink support to 'got commit'









Stefan Sperling

add symlink support to 'got update'






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


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.


Stefan Sperling

plug a memory leak in delete_blob()


Stefan Sperling

make 'got update' skip conflicted files

ok millert@





Tracey Emery

trim directories in got remove -R

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


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.