Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • 0.66
    21ecd399 · CHANGES for 0.66 ·
    got 0.66
    
    - only open raw objects if necessary while writing out pack file data
    - map raw object files into memory while packing if possible
    - encode short deltas in memory instead of writing them to a temporary file
    - add missing checks for reads beyond the mapped memory area of a pack file
    - fix file corruption regression in 'got checkout' from 0.65 (reported by naddy)
  • 0.65
    81c0cc1e · CHANGES for 0.65 ·
    got 0.65
    
    - fix 32-bit size_t multiplication overflow in meyrs diff code
    - ignore the return value of closefrom(2) (patch by Anna a.k.a. CyberTailor)
    - sort paths in got log -Pp and tog's diff view the same way as in the diff
    - fix NULL dereference in 'got clone' if server sends an empty pack file
    - tog: make searches start from the current position in all views
    - tog: clear search highlighting when reloading view (naddy)
    - set close-on-exec flag on files opened by main process (suggested by millert)
    - use 'gotadmin pack' when running tests with GOT_TEST_PACK=1, not 'git repack'
    - fix bogus "object not found" errors when specified object ID begins with 00
    - avoid creation of new temporary files whenever a packed object is read
    - use time-based rate-limiting for gotadmin progress output
    - print status output even when 'gotadmin cleanup' finds no objects to remove
    - tog: fix a scrolling problem when diffing binary files
  • 0.64
    9fe19ceb · CHANGES for 0.64 ·
    got 0.64
    
    - try only 3 delta base candidates instead of 10 to speed up packing
    - use up to 128 delta chain elements again; creates smaller packs at same speed
    - remove unused variables to fix LLVM 13 warnings (naddy)
    - make 'got rebase' switch the work tree if no commits need rebasing (jrick)
    - fix man page HTML rendering for command aliases (kn)
    - let gotadmin find the repository automatically if invoked in a work tree
    - preserve binary files during updates and merges instead of leaving them empty
    - allow sorting references by timestamp in tog ref view
    - add got ref -t option to sort listed references by modification time
    - add got branch -t option to sort listed branches by modification time
    - regress: make test operands POSIX compliant (thomas_adam)
  • 0.63
    f1028e98 · changes for 0.63 ·
    got 0.63
    
    - fix 'got send -T' regression if tag already exists on server (found by Omar)
    - fix another regression where a 3-way merge would segfault (naddy)
    - tog: add Ctrl-n/Ctrl-p for scrolling one line down/up (patch by Omar Polo)
    - always initialize output parameter "n" of get_line() in diff3.c
    - set oldo.to in diff3.c's duplicate() even if the file contains no newlines
  • 0.62
    d89fbca5 · CHANGES for 0.62 ·
    got 0.62
    
    - man pages: document command aliases in tmux(1) style, add tags (kn)
    - ignore unversioned files while aborting rebase, histedit, merge or operations
    - let 'got fetch' send all references to the server to avoid redundant downloads
    - plug memory leaks in got-fetch-pack and got-send-pack
    - provide lib/Makefile to enable tags file generation (kn)
    - add support for multiple path arguments to 'got diff'
    - fix merging of lines inserted at the top of a file (reported by Omar Polo)
    - display the requested object type in "object not found" error messages
    - implement 'got diff -c' for diffing commits with optional filtering by path
    - speed up 'got histedit -l' and 'got rebase -l'
    - fix merging of files which contain a dot on a line by itself
    - sort and de-duplicate work tree path command line arguments (suggested by kn)
    - fix pack index cache element rotation; keep often used entries near the front
    - use a bloom filter to avoid pointless pack index searches
    - do not skip ignored directories in 'got status' if they contain tracked files
    - FreeBSD's ed(1) does not accept "0i"; use the equivalent "1i" instead (naddy)
    - speed up pack file creation a little by caching raw objects
    - limit delta chain length in newly created pack files to 32 deltas
    - while packing, store encoded deltas in temporary files instead of in memory
    - sync with OpenBSD parse.y (naddy)
    - make 'gotadmin indexpack' unveil the repository read/write, not read-only
    - plug memory leak in an error path of read_packed_object()
  • 0.61
    9d9e459f · CHANGES for 0.61 ·
    got 0.61
    
    - fix list of 'got status' options in the got.1 man page
    - tog: use sched_yield(2) for better portability (patch by Quentin Rameau)
    - fix histedit_no_op test which was failing randomly (patch by Lucas)
    - fix 'got send' with tree objects which contain symlinks (reported by Omar)
    - tog: show parent commit IDs of merge commits in the diff view
    - add a 'got merge' command for creating merge commits
    - fix 'got update' of an added + obstructed file
    - mark some function parameters 'const', as they should be (patch by Omar Polo)
    - add 'static' qualifier to local functions in got-read-pack (again Omar Polo)
    - fix some integers that had a slightly wrong type (again by Omar Polo)
    - match printf specifiers and (cast) types for portability (naddy)
    - don't change bad symlinks into regular files during merges
    - handle errno variations upon open(2) failure with O_NOFOLLOW for portability
    - garbage-collect unused "dist" target from subdirectory Makefiles (naddy)
    - match the unsigned char type used by the zlib interface (naddy)
    - fix unsigned/signed char mismatch in parse.y (naddy)
    - fix 'got fetch' downloading too many objects in some cases
    - interrupt 'got rebase' upon missing/unversioned/not-deleted files
    - interrupt 'got histedit' upon missing/unversioned/not-deleted files
    - pull in a type fix from the OpenBSD parse.y template (naddy)
    - explicitly set the default branch name after 'git init' in regress tests
    - add histedit -e option which runs the 'edit' script command for every commit
    - skip ignored directories during 'got status' disk crawl
  • 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)
  • 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.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.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.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.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.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.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.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.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.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.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.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.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