Blame


1 0463124f 2019-08-23 stsp * got 0.11; 2019-08-23
2 0463124f 2019-08-23 stsp - add 'got tag' command
3 0463124f 2019-08-23 stsp - add 'got cat' command
4 0463124f 2019-08-23 stsp - support quick cancellation in 'tog blame' view
5 0463124f 2019-08-23 stsp - fix search prompt location in split-screen tog views
6 0463124f 2019-08-23 stsp
7 0c349e71 2019-08-21 stsp * got 0.10; 2019-08-21
8 0c349e71 2019-08-21 stsp - fix and simplify blame algorithm
9 0c349e71 2019-08-21 stsp
10 37ee2bb3 2019-08-19 stsp * got 0.9; 2019-08-19
11 37ee2bb3 2019-08-19 stsp - fix blame bug where lines were annotated with wrong commit
12 37ee2bb3 2019-08-19 stsp - man page spelling fixes (patch by Hiltjo Posthuma)
13 37ee2bb3 2019-08-19 stsp - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
14 37ee2bb3 2019-08-19 stsp - make 'got revert' ignore unversioned files instead of aborting (semarie@)
15 37ee2bb3 2019-08-19 stsp - fix "last commit cannot be folded" histedit check with reordered commits
16 37ee2bb3 2019-08-19 stsp
17 36e8577e 2019-08-16 stsp * got 0.8; 2019-08-16
18 36e8577e 2019-08-16 stsp - write tree entries the way git likes it to prevent git index corruption
19 36e8577e 2019-08-16 stsp - make 'got blame' show line numbers, dates, and author names
20 36e8577e 2019-08-16 stsp - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
21 36e8577e 2019-08-16 stsp
22 50c7d1b0 2019-08-13 stsp * got 0.7; 2019-08-13
23 50c7d1b0 2019-08-13 stsp - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
24 50c7d1b0 2019-08-13 stsp - strip Git GPG signatures from log messages
25 50c7d1b0 2019-08-13 stsp - fix regression: don't try to parse "leightweight" tags as real tag objects
26 50c7d1b0 2019-08-13 stsp
27 54cc910e 2019-08-13 stsp * got 0.6; 2019-08-13
28 54cc910e 2019-08-13 stsp - 'got log' and 'tog log' now display tags in addition to branch references
29 54cc910e 2019-08-13 stsp - 'got ref' can now be used to create symbolic references
30 54cc910e 2019-08-13 stsp - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
31 54cc910e 2019-08-13 stsp - fix crash if 'got rebase' has no commits to rebase (with semarie@)
32 54cc910e 2019-08-13 stsp - annotate symlinks with @ in 'got tree' and 'tog tree'
33 54cc910e 2019-08-13 stsp
34 cbc52e82 2019-08-12 stsp * got 0.5; 2019-08-12
35 cbc52e82 2019-08-12 stsp - fix blame with single-commit history and with files without \n
36 cbc52e82 2019-08-12 stsp - fix crashes in tog when blame returns no results on a file (found by otto@)
37 cbc52e82 2019-08-12 stsp - man page improvements (bentley@)
38 cbc52e82 2019-08-12 stsp
39 16f6d716 2019-08-11 stsp * got 0.4; 2019-08-11
40 16f6d716 2019-08-11 stsp - add support for tag objects to 'got diff'
41 16f6d716 2019-08-11 stsp - fix tog log -r option (patch by semarie@)
42 16f6d716 2019-08-11 stsp - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
43 16f6d716 2019-08-11 stsp - fix getline(3) return value check (patch by Hiltjo Posthuma)
44 16f6d716 2019-08-11 stsp - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
45 2a9b497b 2019-08-11 stsp - fix spurious failures of test_revert_patch_one_change due to race condition
46 16f6d716 2019-08-11 stsp
47 17cf36d4 2019-08-10 stsp * got 0.3; 2019-08-10
48 17cf36d4 2019-08-10 stsp - fix bug where 'revert -p' would delete all lines following a reverted change
49 17cf36d4 2019-08-10 stsp - fix merge bug inherited from OpenRCS, affecting lines with leading .
50 17cf36d4 2019-08-10 stsp - fix man page installation during manual 'make install' from plain tarball
51 17cf36d4 2019-08-10 stsp
52 25189667 2019-08-09 stsp * got 0.2; 2019-08-09
53 25189667 2019-08-09 stsp - improve error message if helper binaries fail to unveil(2)
54 25189667 2019-08-09 stsp - add support for tags to -c options of some got commands
55 25189667 2019-08-09 stsp - attempt to reject GOT_AUTHOR values without an email address because git
56 25189667 2019-08-09 stsp is unable to parse resulting commit objects
57 25189667 2019-08-09 stsp - fix build on OpenBSD/sparc64 (gcc)
58 25189667 2019-08-09 stsp
59 2c00348c 2019-08-09 stsp * got 0.1; 2019-08-09
60 fdcfc893 2019-08-08 stsp initial release; see git repository history for changes up to this point