Skip to content
Tags give the ability to mark specific points in history as being important
  • 0.41
    5a7c94c1 · CHANGES for 0.41 ·
    got 0.41
    
    - make 'got ref -d' delete both loose and packed representations of the ref
    - make dangling symbolic references show up in 'got ref -l'
    - fix handling of slashes in got.conf repository paths (found by naddy)
    - hide remote HEAD refs in gotweb in order to match got and tog output
    - make 'got histedit' collapse folded add+delete operations (found by jrick)
    - fix matching the first object ID listed in a pack index (found by jrick)
    - let 'got clone' try to connect to server before creating repository contents
    - fix default branch name written to Git config file by 'got clone'
    - allow an interrupted 'got clone' to be resumed by 'got fetch'
    - handle failed connection attempts to git:// servers (patch by jrick)
    - make gotweb work in subdirectories of the web space (found by uwerler)
  • 0.42
    2b451e1a · changes for 0.42 ·
    * got 0.42
    
    - add "branch" keyword to got.conf which specifies a list of branches to fetch
    - rework got's commit-time log message modification check
    - fix potential type mismatches between format specifiers and arguments (naddy)
    - prefer the BSD extension to reset getopt over the GNU one (naddy)
    - fix 'bad path' error from 'got clone' by unveiling the repository path again
  • 0.43
    47d693bd · CHANGES for 0.43 ·
    got 0.43
    
    - do not treat the -h and -V flags as errors (naddy)
    - allow regress test data to be stored in locations other than /tmp
    - unveil repositories read-write when adding tags with 'got tag'
    - rewrite test argument parsing with the POSIX getopts shell built-in (naddy)
    - in tests, accommodate ls -l implementations that print "total 0" (naddy)
    - fix a bug where 'got status' showed an unchanged empty file as changed
    - handle non-const basename(3) and dirname(3) for POSIX compatibility
    - properly handle nonexistent remote repository names given to 'got fetch'
  • 0.44
    76e818c5 · changes for 0.44 ·
    got 0.44
    
    - detect unknown repository format extensions such as Git's sha256 extension
    - prevent a NULL dereference if 'got log -p' runs against a root commit
    - fix permissions mode bits for fetched pack files; patch by Alisdair MacLeod
    - use fchmod(2) instead of chmod(2) (semarie, naddy)
    - initialize sb.st_mode after stat(2) failure in got_worktree_resolve_path()
    - clear staged file type in file index entries whenever staged status is cleared
    - unlink temporary files in error cases of install_blob()
    - fix replacing a file with a symlink during merges; problem found by jrick
    - fix parsing of 'ON' keyword in gotweb parse.yl patch by Martin Vahlensieck
    - remove unused variable in gotweb.c; patch by Martin Vahlensieck
  • 0.45
    c39ec063 · sync distfile list ·
    got 0.45
    
    - new diff implementation from git.gameoftrees.org/diff.git (with neels)
    - use Patience diff algorithm with fallback to Myers diff
    - new blame algorithm which compares commit N-1 to N (with neels)
    - handle binary files in got/tog diff commands; add -a options to force text
    - consistently label removed files as "/dev/null" in diff headers
    - prevent potential fclose(NULL) in error path of diff_blobs()
    - use size_t for loop indices to avoid signedness warnings (by emaste@freebsd)
    - in tests, replace echo with printf and stop option processing via "--" (naddy)
    - fix test failure of test_tree_submodule_of_same_repo for packed repos (yzhong)
    - add fd to got_worktree, modify got_fileindex_entry_update to use fds (yzhong)
    - add histedit -f flag for folding shortcut (jrick)
    - prevent log message loss of folded commits during histedit
    - tog: plug two memory leaks in draw_file()
    - tog: show current/total line numbers in diff view header
    - tog: highlight matched search terms in diff and blame views
    - tog: call pthread_cond_destroy(cond) just once when closing log view (naddy)
    - tog: reset diff view's scroll position if diff context shrinks too much
    - tog: make tog diff accept reference and tag arguments; add -w and -C options
    - tog: new 'tog ref' subcommand which displays references in the repository
    - tog: fix entry selection when moving to the parent in tree view (naddy)
    - tog: fix page-down/page-up scrolling in the tree view (with naddy)
    - tog: trim redundant parameters from many functions, and tidy up code (naddy)
    - tog: log view now requests more commits when the window expands (naddy)
    - tog: call pledge(2) directly in main() instead of per-command
    - tog: fix bug on FreeBSD where pressing 'q' in a child view caused tog to exit
    - tog: fix move to next/prev commit in diff view if log is not displayed (naddy)
    - tog: make ^L in the log view stick to branches/tags selected via -c option
    - tog: make tree view keep track of branches/tags specified via -c
    - tog: fix crashes when the log view reloads displayed data
    - tog: resize events go to child views as well as parent views (found by naddy)
    - tog: move the tree view's selection cursor up if terminal shrinks too much
    - tog: fix display of lines that end in "\r\n" (problem found by jrick)
    - tog: accommodate newer ncurses where panel_userptr() returns const (naddy)
    - tog: use getline(3) instead of fparseln(3) for better portability
  • 0.46
    22cbd110 · CHANGES for 0.46 ·
    got 0.46
    
    - reset tog blame view's scroll position if line count shrinks too much (naddy)
    - replace unprintable characters with '.' before passing them to curses (naddy)
    - allow editing of log message comments with 'got histedit'
    - implicitly mark all files in work tree as up-to-date after rebase/histedit
    - add fd field to got_repository, modify got_packidx_open to use fds (yzhong)
    - more size_t for loop indices to avoid signedness warnings; by emaste@freebsd
    - fix path existence check in got_object_tree_path_changed (reported by jrick)
    - fix parsing of tag objects which lack a tag message; found in u-boot.git repo
    - do not mix up repos if tog's -r option is used in a work tree (with naddy)
    - avoid signed vs unsigned comparisons in fetch.c (with millert)
    - introduce got_custom_error array to support multiple errors in flight
    - switch to strerror_r(3) in error.c for thread-safety
  • 0.47
    1252b141 · CHANGES for 0.47 ·
    got 0.47
    
    - update got.1 CAVEATS section; prompted by feedback from otto@
    - fix assignment to wrong pointer in got_ref_dup()
    - fix performance on repositories with many references (e.g. freebsd src.git):
      o implement an object ID map for reference lists
      o use reflist object id maps in got log, tog log, and tog diff (with naddy)
      o switch reflist to TAILQ; insert elements more efficiently for sorted input
  • 0.48
    8c6f70b8 · CHANGES for 0.48 ·
    got 0.48
    
    - use POSIX [s1 = s2] syntax instead of [s1 == s2] (patch by Ryo ONODERA)
    - tog log: terminate author field at '>' in case there is no '@' (naddy)
    - replace fparseln(3) with getline(3), for better portability (naddy)
    - make 'got clone' pin the fetched branch in got.conf(5)
    - allow the 'got fetch' -l option together with the -q option
    - store branches passed via 'got clone -b' in got.conf(5) and git-config(1)
    - work around spurious ACK responses from git servers in got-fetch-pack
    - add a 'fetch-all-branches' configuration setting to got.conf(5)
    - add a 'reference' directive to remote repositories in got.conf(5)
    - fix 'got up -c commit path' deleting unrelated files (found by Timo Myyrä)
    - fix 'tog blame' segfault upon empty input file (found by naddy)
    - let 'got clone' write gitconfig directives that match the generated got.conf
    - fix a use after free in got_worktree_close() (naddy)
    - make fclose(3) failure checks consistent; check 'fclose() == EOF' everywhere
    - make close(2) failure checks consistent; check 'close() == -1' everywhere
    - fix missing close(2) error check in got_worktree_close()
  • 0.49
    2664411d · CHANGES for 0.49 ·
    got 0.49
    
    - implicitly mark all files in work tree as up-to-date after 'got integrate'
    - tog: fix behaviour if 'n' is pressed before search is started (found by naddy)
    - in 'got clone', allow -l together with -q, for consistency with 'got fetch'
    - add 'got commit -F' option to commit with a log message stored in a file
    - simplify error message shown when 'got rebase' has nothing to do
    - tolerate tag objects which lack tagger timestamp information (found by naddy)
    - got info: fix a pasto in an error message (naddy)
    - include remote branches in the output of 'got branch -l' (suggested by helg)
  • 0.50
    f5999cde · CHANGES for 0.50 ·
    got 0.50
    
    - use Myers diff instead of Patience diff when merging files with diff3
    - port file deltification code from git9; a prerequisite for writing pack files
    - implement raw object data access; another prerequisite for writing pack files
    - improve got log -x documentation (jrick)
    - improve got ref -d documentation
    - fix strftime(3) short buffer checks (jrick)
    - ensure that old commits remain referenced after rebase and histedit
    - new got rebase -l option which lists past rebase operations
    - new got histedit -l option which lists past histedit operations
  • 0.51
    7674972a · CHANGES for 0.51 ·
    got 0.51
    
    - deltify.c: explicitly include <endian.h> for be64toh()
    - rebase/histedit -l: error out if no backups for the requested branch exist
    - fix use of uninitialized stat buffer during status crawl (found by naddy)
  • 0.52
    d34046a7 · CHANGES for 0.52 ·
    got 0.52
    
    - fix error checking in dial_ssh()
    - increase pack index cache size from 16 to 64 to improve performance
    - fix off-by-one in got_repo_cache_pack() causing the wrong pack to be evicted
    - cap pack file cache size at 1/8 of the current open file desciptor limit
    - when reading a pack index byte-swap fields at compile-time where possible
    - diff: reduce duplicate code (kn)
    - fix "mandoc -T lint" WARNINGS and ERRORS, add missing word (kn)
    - fix open file descriptor leak in error path of read_object_header_privsep()
  • 0.53
    611b4645 · changes for 0.53 ·
    got 0.53
    
    - do not update symlinks which are already up-to-date
    - add a gotadmin utility with info, pack, indexpack, and listpack commands
    - fix 3-way merge of files which lack a final \n
    - make double-quotes appear in rendered got.1 man page as intended (Nam Nguyen)
    - gotweb: render error page instead of returning error 500 (tracey)
    - avoid an error in tog(1) while the terminal window is being resized
    - plug a memory leak in got_ref_list_free()
    - catch invalid reference names passed to 'got ref -l'
    - fix a memory leak in dial_git() (naddy)
    - fix unrelated changes being merged by got cherrypick/backout/rebase/histedit
    - go back to Patience diff for merging during cherrypick/backout/histedit/rebase
    - fix file descriptor leak in got_repo_close() (tracey)
    - fix hang in commit regress test if $VISUAL is set in the environment (tracey)
    - use socketpair(2) instead of pipe(2) for better portability to Linux
    - make it possible to profile gotweb and document how profiling works
    - fix memory and fd leaks in got_pack_stop_privsep_child() (tracey)
    - fix bogus 'permission denied' error when a file at work tree root is removed
    - port packfile creation code over from git9
    - new -I option for 'got status' to show files which match an ignore pattern
  • 0.54
    a4b6bb94 · sync distfile list ·
    got 0.54
    
    - fix imsg header includes in pack_create.c
    - explicitly include endian.h for be32toh() in repository_admin.c (naddy)
    - switch from SIMPLEQ to equivalent STAILQ macros (naddy)
    - fix logic error in gotweb navigation for commits, briefs, and tags (tracey)
    - fix bugs where files skipped by 'got update' could not be updated again
    - fix out-of-bounds access in 'gotadmin pack'
    - fix unintended redundant recallocarray() calls done by 'gotadmin pack'
    - cache object type in memory to speed up packing of objects referenced by tags
    - fix, again, use of POSIX [ s1 = s2 ] syntax instead of [ s1 == s2 ] (naddy)
    - new 'gotadmin cleanup' command for removing unreferenced loose objects
    - handle pack index files which lack a corresponding pack file
    - make 'got add' always require the -I option in order to add ignored files
    - write lines instead of just one character at a time in diff_output_lines()
    - verify object ID checksums while loose objects are being accessed
  • 0.55
    d7fcf401 · CHANGES for 0.55 ·
    got 0.55
    
    - display recovery steps in the lonely pack index error message
    - fix double-free that ocurred upon exit from 'tog tree'; found by naddy
    - don't scan pack index offsets for large values if pack file is < 2GB
    - new -X option for removing backups created by got rebase and got histedit
    - add 'got fetch -X' option for deleting references created by 'got fetch'
    - make 'got ref -d' print reference name and value like the new -X options do
  • 0.56
    ce0c9cde · CHANGES for 0.56 ·
    got 0.56
    
    - prevent a race where 'gotadmin cleanup' deletes concurrently created objects
    - plug a small memory leak in tog's show_diff_view() function
    - fix a use-after-free in get_changed_paths() in got and tog
    - use less memory allocations when formatting log messages
    - make got_deltify() rellocate the deltas array less often
    - plug a memory leak in an error path of got_deltify()
    - fix miscalculation of the final pack file size reported by got_pack_create()
    - fix the error message shown when the server sends a bad ref line
    - prevent NULL deref in got-fetch-pack if server does not announce capabilities
    - add a missing bounds-check in got-fetch-pack when parsing server response
    - fix, again, use of POSIX [ s1 = s2 ] syntax instead of [ s1 == s2 ] (naddy)
    - add 'got send' for sending changes to remote repositories (with naddy, tracey)
    - allow deletion of refs/remotes/ branches with got branch -d
    - add missing "return 1" to failure handling in the regress scripts (naddy)
    - make realloc_ids() malloc-like and do not overallocate (naddy)
    - fix seek to incorrect offset in the delta base when creating deltas
    - use gmtime_r(3) to display timestamps in UTC as intended (found by naddy)
    - add keys for navigating to first/last item of tog log and diff views (jasper)
  • 0.57
    49213cad · changes for 0.57 ·
    got 0.57
    
    - remove superfluous strdup(3) from parse.y files (Martin Vahlensieck)
    - adapt regress tests which handle UTC dates (naddy)
    - make 'got send' actually heed branch {} options in got.conf(5) as intended
    - disable ignore lists during status walks used by rebase and histedit
    - tog: add support for navigating to first/last line of blame view (naddy)
    - fix bogus error when 'got cherrypick' merged changes into locally added file
    - remove ancestry checks to make 'got cherrypick' and 'got backout' run faster
    - limit checks for merge conflicts to files affected by the merge to be faster
    - fix 'got send' adding too many objects to the pack file in some cases
  • 0.58
    fec556bc · CHANGES for 0.58 ·
    got 0.58
    
    - tog: support navigating to first/last line of tree and ref views (naddy)
    - tog: jump directly to first log item instead of traversing the list (naddy)
    - tog: when jumping to bottom of the log view, go from tail backwards (naddy)
    - make "got branch -d" print reference name and value (naddy)
    - move code duplicated by got-send-pack and got-fetch-pack to common files
    - assert against accidentally overflowing argv[] in got_dial_ssh() (naddy)
    - make 'gotadmin info' display separate send/fetch URLs if they differ
    - fix a null-pointer deref in 'got fetch -d' (reported by Omar Polo)
  • 0.59
    47975383 · CHANGES for 0.59 ·
    got 0.59
    
    - fix copy-pasto in got.conf man page
    - add -q quiet mode to checkout and update (tracey)
    - make 'got send' send commits which are referenced only by tags (found by Omar)
    - add -S option to 'got status' for suppressing certain status codes (tracey)
    - make 'got checkout' display the checked out reference and commit ID
    - make 'got update' display the worktree's branch name upon success
  • 0.60
    4a87b370 · CHANGES for 0.60 ·
    got 0.60
    
    - fix another instance of 'got send' sending branches the server already has
    - make 'got send' regression tests run 'git fsck' on all involved repositories
    - shell code fixes in regress tests for portability (naddy)