Blame


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