Blame


1 2eea88b2 2020-01-14 stsp * got 0.25; 2020-01-14
2 2eea88b2 2020-01-14 stsp - fix suspending and resuming tog with Ctrl-Z and fg (reported by naddy@)
3 2eea88b2 2020-01-14 stsp - fix 'tog tree' usage displayed in error case (patch by naddy@)
4 2eea88b2 2020-01-14 stsp - support Git-style "lightweight" tags as arguments for 'got diff'
5 2eea88b2 2020-01-14 stsp - handle Git-style "lightweight" tags in got tag -l
6 2eea88b2 2020-01-14 stsp - make got and tog accept a --version argument (prompted by tedu@)
7 2eea88b2 2020-01-14 stsp - add -E option to 'got checkout' allowing use of a non-empty work tree path
8 2eea88b2 2020-01-14 stsp - make 'tog log PATH' fail when a non-existent path is specified
9 2eea88b2 2020-01-14 stsp - fix out of bounds access (patch by Martin <openbsd () academicsolutions ! ch>)
10 2eea88b2 2020-01-14 stsp - fix switching to tog's tree view when logging a path (reported by naddy@)
11 2eea88b2 2020-01-14 stsp
12 c6618805 2020-01-08 stsp * got 0.24; 2020-01-08
13 c6618805 2020-01-08 stsp - do not open and close pack index files needlessly
14 c6618805 2020-01-08 stsp - fix 'got log' and 'tog log' performance issue when lots of tags exist
15 c6618805 2020-01-08 stsp - do history traversal in got-read-pack to improve 'got blame' performance
16 c6618805 2020-01-08 stsp - plug memory leaks in got-read-commit, got-read-tree, and got-read-pack
17 c6618805 2020-01-08 stsp - fix reading reference deltas with GOT_PACK_NO_MMAP builds
18 c6618805 2020-01-08 stsp - disable got-read-pack's delta cache in GOT_NO_OBJ_CACHE builds
19 c6618805 2020-01-08 stsp - make it possible to run regress tests with packed repositories
20 c6618805 2020-01-08 stsp - more portable string comparison in Makefile.inc (patch by Edgar Pettijohn)
21 c6618805 2020-01-08 stsp - prevent rebase with an out-of-date work tree
22 c6618805 2020-01-08 stsp - make 'got checkout' and 'got update' work with read-only repositories
23 c6618805 2020-01-08 stsp
24 c01db4f8 2019-12-16 stsp * got 0.23; 2019-12-16
25 c01db4f8 2019-12-16 stsp - prevent status crawl from racing with paths changing in the filesystem
26 c01db4f8 2019-12-16 stsp - add -k option to 'got remove' to keep files on disk (Tracey Emery)
27 c01db4f8 2019-12-16 stsp - add -R option to 'got remove' for recursive deletion (Tracey Emery)
28 c01db4f8 2019-12-16 stsp - add -I option to 'got add' to disregard ignore patterns (Tracey Emery)
29 c01db4f8 2019-12-16 stsp - show numeric dates in ISO-8601/xkcd-1179 format in 'tog log' and 'got blame'
30 c01db4f8 2019-12-16 stsp
31 517adc5a 2019-12-01 stsp * got 0.22; 2019-12-01
32 517adc5a 2019-12-01 stsp - allow empty diff context context (-C0) in 'got diff' (kn@)
33 517adc5a 2019-12-01 stsp - add '-s search-pattern' option to 'got log' (kn@)
34 517adc5a 2019-12-01 stsp - forward rebased branch if there are no commits to rebase, instead of error
35 517adc5a 2019-12-01 stsp - parse remote repository URLs from gitconfig
36 517adc5a 2019-12-01 stsp - actually forbid new reference names with a leading '-', as intended
37 517adc5a 2019-12-01 stsp - convert tree entries from SIMPLEQ to an array for better performance
38 517adc5a 2019-12-01 stsp - compile static binaries in PROFILE build
39 517adc5a 2019-12-01 stsp
40 06c0a175 2019-11-25 stsp * got 0.21; 2019-11-25
41 06c0a175 2019-11-25 stsp - add -R option to 'got add' for recursive addition (patch by Tracey Emery)
42 06c0a175 2019-11-25 stsp - reduce the amount of memcpy() and strdup() while parsing tree entries
43 06c0a175 2019-11-25 stsp - fix tog display issue caused by Tab in commit messages; reported by mpi@
44 06c0a175 2019-11-25 stsp - cache delta data buffers in an LRU cache to improve performance
45 06c0a175 2019-11-25 stsp - add -c option to 'got branch', replacing the optional second argument
46 06c0a175 2019-11-25 stsp
47 473cb1cd 2019-11-08 stsp * got 0.20; 2019-11-09
48 473cb1cd 2019-11-08 stsp - fix reading pack files larger than 2GB
49 473cb1cd 2019-11-08 stsp - try not to hide errors from helper programs when got exits
50 473cb1cd 2019-11-08 stsp - use less empty padding space after author name in 'tog log'
51 473cb1cd 2019-11-08 stsp - rename 'got init' and 'got import' default branch to "main" (patch by kmos@)
52 473cb1cd 2019-11-08 stsp
53 b302f6b8 2019-11-08 stsp * got 0.19; 2019-11-08
54 b302f6b8 2019-11-08 stsp - add optional colorized display mode to tog
55 b302f6b8 2019-11-08 stsp - make 'tog log' show abbreviated commit IDs if the window is large enough
56 b302f6b8 2019-11-08 stsp - fix staging of multiple files with -p
57 b302f6b8 2019-11-08 stsp - show commit date's century in 'got blame' output (patch by Tracey Emery)
58 b302f6b8 2019-11-08 stsp
59 5da3196d 2019-10-21 stsp * got 0.18; 2019-10-21
60 5da3196d 2019-10-21 stsp - always show the input path when realpath(3) returns an error
61 5da3196d 2019-10-21 stsp - preserve log message when an error occurs during commit, tag, or import
62 5da3196d 2019-10-21 stsp - ignore empty files in refs directory instead of throwing errors
63 5da3196d 2019-10-21 stsp - show file mode differences (executable bit) when diffing in-repository trees
64 5da3196d 2019-10-21 stsp - fix handling of executable-bit changes during update, commit, and status
65 5da3196d 2019-10-21 stsp - improve tog's responsiveness after loading hundreds of thousands of commits
66 5da3196d 2019-10-21 stsp - fix tog performance bug which made searching through commits very slow
67 5da3196d 2019-10-21 stsp - add 'got integrate' command for merging a branch back to its parent branch
68 5da3196d 2019-10-21 stsp - show content from the merge-base file in 3-way merge conflicts, if available
69 5da3196d 2019-10-21 stsp - improved indication of 3-way merge inputs in conflict marker labels
70 5da3196d 2019-10-21 stsp - handle read errors in got_packidx_init_hdr (found by jj@ with scan-build)
71 5da3196d 2019-10-21 stsp - remove worklist code; it was only used to unlink files already unlinked
72 5da3196d 2019-10-21 stsp - show bad reference names in error messages to make such errors more clear
73 5da3196d 2019-10-21 stsp - add -w (ignore whitespace) option to 'got diff'
74 5da3196d 2019-10-21 stsp - improved coding style and error handling in diff3 code
75 5da3196d 2019-10-21 stsp
76 1b450cf1 2019-10-06 stsp * got 0.17; 2019-10-06
77 1b450cf1 2019-10-06 stsp - make 'got branch' without args show work tree's branch (requested by benno)
78 1b450cf1 2019-10-06 stsp - show temporary branch in 'got branch -l' during rebase and histedit
79 1b450cf1 2019-10-06 stsp - refresh references when 'tog log' view is refreshed with Ctrl+L
80 1b450cf1 2019-10-06 stsp - make 'got status' read .gitignore files; support **/ and /**/ in patterns
81 1b450cf1 2019-10-06 stsp - handle empty trees during 'import' and 'checkout' (issue reported by sthen)
82 1b450cf1 2019-10-06 stsp - show only whitelisted commit headers in 'got log' (semarie)
83 1b450cf1 2019-10-06 stsp - properly handle getline(3) return type as ssize_t (hiltjo)
84 1b450cf1 2019-10-06 stsp
85 eab2e76a 2019-09-23 stsp * got 0.16; 2019-09-23
86 eab2e76a 2019-09-23 stsp - replace fgetln(3) with getline(3) for portability (patch by Steven McDonald)
87 eab2e76a 2019-09-23 stsp - fix implicit time.h includes (patch by Steven McDonald)
88 eab2e76a 2019-09-23 stsp - fix tiny memory leaks and other minor bugs found by jj@ with scan-build
89 eab2e76a 2019-09-23 stsp - fix missing error checks (found by jj@ with scan-build and by Steven McDonald)
90 eab2e76a 2019-09-23 stsp - avoid a couple of potential NULL derefs (found by jj@ with scan-build)
91 eab2e76a 2019-09-23 stsp - fix cosmetic display issues involving \n and TABs in tog(1)
92 eab2e76a 2019-09-23 stsp
93 6c1263b4 2019-09-08 stsp * got 0.15; 2019-09-08
94 6c1263b4 2019-09-08 stsp - use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
95 6c1263b4 2019-09-08 stsp - obtain repo format version and commit author name/email from .git/config
96 6c1263b4 2019-09-08 stsp - fix line-wrap for lines spanning the terminal in tog diff view
97 6c1263b4 2019-09-08 stsp - make 'got status' ignore inaccessible directories (reported by semarie)
98 6c1263b4 2019-09-08 stsp - unstage may need to write to repository; fix unveil(2) call accordingly
99 6c1263b4 2019-09-08 stsp - fix modified files not shown by 'got status' after committing staged changes
100 6c1263b4 2019-09-08 stsp
101 b542b18a 2019-09-03 stsp * got 0.14; 2019-09-03
102 b542b18a 2019-09-03 stsp - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
103 b542b18a 2019-09-03 stsp - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
104 b542b18a 2019-09-03 stsp - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
105 b542b18a 2019-09-03 stsp - make tog release its work tree lock before going into main loop
106 b542b18a 2019-09-03 stsp - 'got stage' writes to repository, fix unveil(2) call accordingly
107 b542b18a 2019-09-03 stsp
108 dc74ba25 2019-08-30 stsp * got 0.13; 2019-08-30
109 dc74ba25 2019-08-30 stsp - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
110 dc74ba25 2019-08-30 stsp - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
111 dc74ba25 2019-08-30 stsp - fix deletion of branches stored in packed-refs
112 dc74ba25 2019-08-30 stsp - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
113 dc74ba25 2019-08-30 stsp
114 9d762f74 2019-08-26 stsp * got 0.12; 2019-08-26
115 9d762f74 2019-08-26 stsp - add support for path arguments to 'got cat'
116 9d762f74 2019-08-26 stsp - make 'got log -p path' display patches for the specified path only
117 9d762f74 2019-08-26 stsp - allow creating branches based on commit IDs
118 9d762f74 2019-08-26 stsp - prevent deletion of the work tree's current branch
119 9d762f74 2019-08-26 stsp - detect and ignore Git submodules
120 9d762f74 2019-08-26 stsp - indicate non-existent path arguments in 'got status'
121 9d762f74 2019-08-26 stsp - make 'got diff' error for non-existent path arguments
122 9d762f74 2019-08-26 stsp - make 'got tag -l' list tags by time stamp in descending order
123 9d762f74 2019-08-26 stsp - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
124 9d762f74 2019-08-26 stsp
125 0463124f 2019-08-23 stsp * got 0.11; 2019-08-23
126 0463124f 2019-08-23 stsp - add 'got tag' command
127 0463124f 2019-08-23 stsp - add 'got cat' command
128 0463124f 2019-08-23 stsp - support quick cancellation in 'tog blame' view
129 0463124f 2019-08-23 stsp - fix search prompt location in split-screen tog views
130 0463124f 2019-08-23 stsp
131 0c349e71 2019-08-21 stsp * got 0.10; 2019-08-21
132 0c349e71 2019-08-21 stsp - fix and simplify blame algorithm
133 0c349e71 2019-08-21 stsp
134 37ee2bb3 2019-08-19 stsp * got 0.9; 2019-08-19
135 37ee2bb3 2019-08-19 stsp - fix blame bug where lines were annotated with wrong commit
136 37ee2bb3 2019-08-19 stsp - man page spelling fixes (patch by Hiltjo Posthuma)
137 37ee2bb3 2019-08-19 stsp - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
138 37ee2bb3 2019-08-19 stsp - make 'got revert' ignore unversioned files instead of aborting (semarie@)
139 37ee2bb3 2019-08-19 stsp - fix "last commit cannot be folded" histedit check with reordered commits
140 37ee2bb3 2019-08-19 stsp
141 36e8577e 2019-08-16 stsp * got 0.8; 2019-08-16
142 36e8577e 2019-08-16 stsp - write tree entries the way git likes it to prevent git index corruption
143 36e8577e 2019-08-16 stsp - make 'got blame' show line numbers, dates, and author names
144 36e8577e 2019-08-16 stsp - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
145 36e8577e 2019-08-16 stsp
146 50c7d1b0 2019-08-13 stsp * got 0.7; 2019-08-13
147 50c7d1b0 2019-08-13 stsp - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
148 50c7d1b0 2019-08-13 stsp - strip Git GPG signatures from log messages
149 992eb9d8 2020-02-07 tracey - fix regression: don't try to parse "lightweight" tags as real tag objects
150 50c7d1b0 2019-08-13 stsp
151 54cc910e 2019-08-13 stsp * got 0.6; 2019-08-13
152 54cc910e 2019-08-13 stsp - 'got log' and 'tog log' now display tags in addition to branch references
153 54cc910e 2019-08-13 stsp - 'got ref' can now be used to create symbolic references
154 54cc910e 2019-08-13 stsp - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
155 54cc910e 2019-08-13 stsp - fix crash if 'got rebase' has no commits to rebase (with semarie@)
156 54cc910e 2019-08-13 stsp - annotate symlinks with @ in 'got tree' and 'tog tree'
157 54cc910e 2019-08-13 stsp
158 cbc52e82 2019-08-12 stsp * got 0.5; 2019-08-12
159 cbc52e82 2019-08-12 stsp - fix blame with single-commit history and with files without \n
160 cbc52e82 2019-08-12 stsp - fix crashes in tog when blame returns no results on a file (found by otto@)
161 cbc52e82 2019-08-12 stsp - man page improvements (bentley@)
162 cbc52e82 2019-08-12 stsp
163 16f6d716 2019-08-11 stsp * got 0.4; 2019-08-11
164 16f6d716 2019-08-11 stsp - add support for tag objects to 'got diff'
165 16f6d716 2019-08-11 stsp - fix tog log -r option (patch by semarie@)
166 16f6d716 2019-08-11 stsp - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
167 16f6d716 2019-08-11 stsp - fix getline(3) return value check (patch by Hiltjo Posthuma)
168 16f6d716 2019-08-11 stsp - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
169 2a9b497b 2019-08-11 stsp - fix spurious failures of test_revert_patch_one_change due to race condition
170 16f6d716 2019-08-11 stsp
171 17cf36d4 2019-08-10 stsp * got 0.3; 2019-08-10
172 17cf36d4 2019-08-10 stsp - fix bug where 'revert -p' would delete all lines following a reverted change
173 17cf36d4 2019-08-10 stsp - fix merge bug inherited from OpenRCS, affecting lines with leading .
174 17cf36d4 2019-08-10 stsp - fix man page installation during manual 'make install' from plain tarball
175 17cf36d4 2019-08-10 stsp
176 25189667 2019-08-09 stsp * got 0.2; 2019-08-09
177 25189667 2019-08-09 stsp - improve error message if helper binaries fail to unveil(2)
178 25189667 2019-08-09 stsp - add support for tags to -c options of some got commands
179 25189667 2019-08-09 stsp - attempt to reject GOT_AUTHOR values without an email address because git
180 25189667 2019-08-09 stsp is unable to parse resulting commit objects
181 25189667 2019-08-09 stsp - fix build on OpenBSD/sparc64 (gcc)
182 25189667 2019-08-09 stsp
183 2c00348c 2019-08-09 stsp * got 0.1; 2019-08-09
184 fdcfc893 2019-08-08 stsp initial release; see git repository history for changes up to this point