Blame


1 b542b18a 2019-09-03 stsp * got 0.14; 2019-09-03
2 b542b18a 2019-09-03 stsp - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
3 b542b18a 2019-09-03 stsp - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
4 b542b18a 2019-09-03 stsp - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
5 b542b18a 2019-09-03 stsp - make tog release its work tree lock before going into main loop
6 b542b18a 2019-09-03 stsp - 'got stage' writes to repository, fix unveil(2) call accordingly
7 b542b18a 2019-09-03 stsp
8 dc74ba25 2019-08-30 stsp * got 0.13; 2019-08-30
9 dc74ba25 2019-08-30 stsp - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
10 dc74ba25 2019-08-30 stsp - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
11 dc74ba25 2019-08-30 stsp - fix deletion of branches stored in packed-refs
12 dc74ba25 2019-08-30 stsp - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
13 dc74ba25 2019-08-30 stsp
14 9d762f74 2019-08-26 stsp * got 0.12; 2019-08-26
15 9d762f74 2019-08-26 stsp - add support for path arguments to 'got cat'
16 9d762f74 2019-08-26 stsp - make 'got log -p path' display patches for the specified path only
17 9d762f74 2019-08-26 stsp - allow creating branches based on commit IDs
18 9d762f74 2019-08-26 stsp - prevent deletion of the work tree's current branch
19 9d762f74 2019-08-26 stsp - detect and ignore Git submodules
20 9d762f74 2019-08-26 stsp - indicate non-existent path arguments in 'got status'
21 9d762f74 2019-08-26 stsp - make 'got diff' error for non-existent path arguments
22 9d762f74 2019-08-26 stsp - make 'got tag -l' list tags by time stamp in descending order
23 9d762f74 2019-08-26 stsp - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
24 9d762f74 2019-08-26 stsp
25 0463124f 2019-08-23 stsp * got 0.11; 2019-08-23
26 0463124f 2019-08-23 stsp - add 'got tag' command
27 0463124f 2019-08-23 stsp - add 'got cat' command
28 0463124f 2019-08-23 stsp - support quick cancellation in 'tog blame' view
29 0463124f 2019-08-23 stsp - fix search prompt location in split-screen tog views
30 0463124f 2019-08-23 stsp
31 0c349e71 2019-08-21 stsp * got 0.10; 2019-08-21
32 0c349e71 2019-08-21 stsp - fix and simplify blame algorithm
33 0c349e71 2019-08-21 stsp
34 37ee2bb3 2019-08-19 stsp * got 0.9; 2019-08-19
35 37ee2bb3 2019-08-19 stsp - fix blame bug where lines were annotated with wrong commit
36 37ee2bb3 2019-08-19 stsp - man page spelling fixes (patch by Hiltjo Posthuma)
37 37ee2bb3 2019-08-19 stsp - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
38 37ee2bb3 2019-08-19 stsp - make 'got revert' ignore unversioned files instead of aborting (semarie@)
39 37ee2bb3 2019-08-19 stsp - fix "last commit cannot be folded" histedit check with reordered commits
40 37ee2bb3 2019-08-19 stsp
41 36e8577e 2019-08-16 stsp * got 0.8; 2019-08-16
42 36e8577e 2019-08-16 stsp - write tree entries the way git likes it to prevent git index corruption
43 36e8577e 2019-08-16 stsp - make 'got blame' show line numbers, dates, and author names
44 36e8577e 2019-08-16 stsp - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
45 36e8577e 2019-08-16 stsp
46 50c7d1b0 2019-08-13 stsp * got 0.7; 2019-08-13
47 50c7d1b0 2019-08-13 stsp - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
48 50c7d1b0 2019-08-13 stsp - strip Git GPG signatures from log messages
49 50c7d1b0 2019-08-13 stsp - fix regression: don't try to parse "leightweight" tags as real tag objects
50 50c7d1b0 2019-08-13 stsp
51 54cc910e 2019-08-13 stsp * got 0.6; 2019-08-13
52 54cc910e 2019-08-13 stsp - 'got log' and 'tog log' now display tags in addition to branch references
53 54cc910e 2019-08-13 stsp - 'got ref' can now be used to create symbolic references
54 54cc910e 2019-08-13 stsp - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
55 54cc910e 2019-08-13 stsp - fix crash if 'got rebase' has no commits to rebase (with semarie@)
56 54cc910e 2019-08-13 stsp - annotate symlinks with @ in 'got tree' and 'tog tree'
57 54cc910e 2019-08-13 stsp
58 cbc52e82 2019-08-12 stsp * got 0.5; 2019-08-12
59 cbc52e82 2019-08-12 stsp - fix blame with single-commit history and with files without \n
60 cbc52e82 2019-08-12 stsp - fix crashes in tog when blame returns no results on a file (found by otto@)
61 cbc52e82 2019-08-12 stsp - man page improvements (bentley@)
62 cbc52e82 2019-08-12 stsp
63 16f6d716 2019-08-11 stsp * got 0.4; 2019-08-11
64 16f6d716 2019-08-11 stsp - add support for tag objects to 'got diff'
65 16f6d716 2019-08-11 stsp - fix tog log -r option (patch by semarie@)
66 16f6d716 2019-08-11 stsp - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
67 16f6d716 2019-08-11 stsp - fix getline(3) return value check (patch by Hiltjo Posthuma)
68 16f6d716 2019-08-11 stsp - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
69 2a9b497b 2019-08-11 stsp - fix spurious failures of test_revert_patch_one_change due to race condition
70 16f6d716 2019-08-11 stsp
71 17cf36d4 2019-08-10 stsp * got 0.3; 2019-08-10
72 17cf36d4 2019-08-10 stsp - fix bug where 'revert -p' would delete all lines following a reverted change
73 17cf36d4 2019-08-10 stsp - fix merge bug inherited from OpenRCS, affecting lines with leading .
74 17cf36d4 2019-08-10 stsp - fix man page installation during manual 'make install' from plain tarball
75 17cf36d4 2019-08-10 stsp
76 25189667 2019-08-09 stsp * got 0.2; 2019-08-09
77 25189667 2019-08-09 stsp - improve error message if helper binaries fail to unveil(2)
78 25189667 2019-08-09 stsp - add support for tags to -c options of some got commands
79 25189667 2019-08-09 stsp - attempt to reject GOT_AUTHOR values without an email address because git
80 25189667 2019-08-09 stsp is unable to parse resulting commit objects
81 25189667 2019-08-09 stsp - fix build on OpenBSD/sparc64 (gcc)
82 25189667 2019-08-09 stsp
83 2c00348c 2019-08-09 stsp * got 0.1; 2019-08-09
84 fdcfc893 2019-08-08 stsp initial release; see git repository history for changes up to this point