Commit Briefs

Stefan Sperling

Add got(1) command tab-completion for ksh(1) to EXAMPLES section.

Suggested by Clint Pachl, thanks!


Stefan Sperling

allow deletion of refs/remotes/ branches with got branch -d

Also, make requirements for branch name arguments more flexible. Absolute reference names are now accepted. ok naddy@



Stefan Sperling

small man page spelling fixes


Stefan Sperling

tweak the man page section about 'got send'

In particular, attempt to describe the -f option better.


Stefan Sperling

add 'got send' command for sending changes to remote repositories

Known to work against git-daemon and github Git server implementations. Tests by abieber, naddy, jrick, and myself. Man page additions reviewed by Lucas.



Stefan Sperling

new -X option for removing backups created by got rebase and got histedit

ok semarie








Stefan Sperling

got.1: make double-quotes appear in the rendered man page as intended

Patch by Nam Nguyen


Stefan Sperling

Xr gotadmin(1)



Stefan Sperling

ensure that old commits remain referenced after rebase and histedit

Create automatic "backup" references which ensure that objects from the pre-rebase or pre-histedit state remain in the repository. A new -l option for 'got rebase' and 'got histedit' lists old commits. This makes it easier to recover from botched rebase or histedit operations. Removal of such objects currently requires got ref -d and git-gc. This will be made more convenient in the future. testing and ok jrick


Stefan Sperling

improve got ref -d documentation: mention that objects won't be deleted

ok jrick


Josh Rickmar

Clarify log -x is inclusive

ok stsp


Stefan Sperling

include remote branches in the output of 'got branch -l'

This makes it easier to discover the existence of copies of remote branches in the local repository, and fixes a missing asterisk in 'got branch -l' while the work tree is switched to a remote branch. Prompted by feedback from helg, thanks!


Stefan Sperling

add 'got commit -F' option to commit with a log message stored in a file

To avoid accidents commit -F opens the prepared log message in an editor so it can be reviewed before the commit is created. For non-interactive use the -N option is required in addition to -F. ok millert@




Stefan Sperling

add a 'reference' directive to remote repositories in got.conf(5)

Make use of this in 'got clone' to persist -R option arguments given on the command line in the cloned repository's got.conf(5) file.