Commit Briefs

dd088d9503 Stefan Sperling

let 'got fetch' send all references to the server to avoid redundant downloads

Problem reported by naddy. ok naddy


0c079dbc7e Klemens Nanni

Fix "mandoc -T lint -W style" nits


b13a4ebcea Klemens Nanni

Document command aliases in tmux(1) style, add tags for navigation

Complete 95f394e8917def2c11ce292b3a8f804d261b1d12; reminder to look at gotadmin(1) from stsp, thanks.


41f061b2f4 Stefan Sperling

ignore unversioned files while aborting rebase, histedit, merge or operations

ok jrick


90e6e62040 Klemens Nanni

Fix "mandoc -T lint -W style got/got.1" nits


95f394e891 Klemens Nanni

Document command aliases in tmux(1) style, add tags for navigation

This has the advantage of tags being located right by the full command; combined with tags ":tco" to search for the `co` alias will jump right to the `checkout` line, neatly showing everything without needing further navigation. tmux hint from Thomas Adam, thanks. OK stsp


136be4cc66 Stefan Sperling

update 'got merge' TODO item


2b8ed9ecaa Stefan Sperling

bump version number


9d9e459fa6 Stefan Sperling

CHANGES for 0.61 (tags/0.61)


c52bf7fe57 Stefan Sperling

sync dist file list


62da319662 Stefan Sperling

skip ignored directories during 'got status' disk crawl


b93c7142c1 Stefan Sperling

add histedit -e option which runs the 'edit' script command for every commit

ok jrick


78caff98cb Stefan Sperling

explicitly set the default branch name after 'git init' in regress tests

We need to do this because newer versions of Git support an arbitrary default branch name which can be set by users. We don't want tests to fail when this option is used. pointed out by Thomas Adam


5d8cbca3b3 Christian Weisgerber

pull in a type fix from the OpenBSD parse.y template

Original commit message by deraadt: (unsigned) means (unsigned int) which on ptrdiff_t or size_t or other larger types really is a range reduction... Almost any cast to (unsigned) is a bug.


d683c314c5 Christian Weisgerber

fix unsigned/signed char mismatch in parse.y