Commits
- Commit:
74283ab8e59cdc12bc4adb3d2037f37df510bf1f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
switch 'tog tree' repository path argument to a new -r option
- Commit:
a097512813331d3a6c5eac85579b195a9707f114
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix 'got blame' and 'tog blame' on files added on worktree's current branch
- Commit:
82954512f323c8a2d4f89d51be1e6b0f707b6c3a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
revert 6b8a2b8fcd99c4365b1aa9513c0f0149beac2491; it broke 'n' (search next)
In the log view, 'n' sometimes failed to search for the next matching commit
and tog dead-locked. So a yield or mutex unlock/lock is required for search
to work. Perhaps we need a different fix?
- Commit:
f5404e4ea44fac507ec9915adf628e8f41f32f99
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
replace improperly removed break
- Commit:
3ffacbe1f62d0c6495612d17e918e95e40dba981
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
goto done and remove erroneous break
- Commit:
f44b1f585dce43aab1aaaf01e1ab1b5e35fd5806
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
enable searching in tog diff view
ok stsp
- Commit:
5465d566c3b5b09fda1377dd522bea61c4b5a0b8
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
prepare local variable in open_diff_view and close_diff_view for diff view searching
ok stsp
- Commit:
f43793a4e6eda593d67d4872bc7f03398fbd65d9
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix a bug where 'got log PATH' failed to map PATH into the repository
The problem occured inside /usr/src/sys due to the /sys symlink,
where /usr/src was a got work tree. If a work tree is present we
already have the right path so checking the disk is pointless.
- Commit:
b672a97aba1aa83f89f3627751bd54950b5d6f9b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make 'tog log' show first-parent history by default; add -b option and B key
- Commit:
91b8c405499bead2b9a0259bbeaf0e90381c8673
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
tweak default colors for directories and symlinks in 'tog tree'
- Commit:
b55e96cf8f2e45d9a12689ad41d08d426e9715a5
- From:
- Martin Pieuchot <mpi@grenadille.net>
- Date:
Remove redundant error check after got_object_id_by_path().
An error code is always returned when the oid is NULL.
- Commit:
a93813face580b1da5c73546b864c4ea6c7d3064
- From:
- Martin Pieuchot <mpi@grenadille.net>
- Date:
Remove double lock in error path.
- Commit:
6b8a2b8fcd99c4365b1aa9513c0f0149beac2491
- From:
- Martin Pieuchot <mpi@grenadille.net>
- Date:
Remove unnecessary pthread_yield(3).
In the two cases a context switch isn't necessary as the thread isn't
blocked and doesn't need to wait for its sibling.
- Commit:
71a276322e39e17baf5697b5daac8e8fe6ad2ae1
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move match_object_id() into the library; supersedes got_repo_resolve_commit_arg
- Commit:
7a1d6b72b6b0e351fb46965a7f46bc58b18e7cc8
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix 'tog log -c' with tags
- Commit:
6126692377ed3cb9c1d41a17143835553f676a92
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix suspending and resuming tog with Ctrl-Z and fg; issue reported by naddy@
- Commit:
f13374f454ced0d17abbf1d7a4586ccc242ea652
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix 'tog tree' usage displayed in error case (patch by naddy@)
- Commit:
6586ea880db352b50506623a050aa8690c46d804
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
unbreak got and tog commands by disabling GNU extensions in getopt_long(3)
- Commit:
e801a56632211d38c174e5511212d9310fa541b7
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
update usage
- Commit:
83cd27f841bd6479abfad4c2e3c4bd870dd8ab7e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make got and tog accept a --version argument; -V option is a bit obscure
prompted by a question from tedu@
- Commit:
c5b7833452086e7e8e0866b16a5932430cfe9a79
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make 'tog log PATH' fail again when a non-existent path is specified
- Commit:
33cbf02b9777cd078e8a37db5ae068465219301c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix switching to tog's tree view when logging a path; reported by naddy@
- Commit:
5aa813935b6489921083da5ed9459a1cfb8a03e3
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add copyright year for files already touched in 2020
- Commit:
3d5092374a96864fbc4c3d2d2e752f588c63ac39
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
simplify got_commit_graph_open()
- Commit:
ee780d5ce8c335e430804438c35eb48564ec0afb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove GOT_ERR_ITER_NEED_MORE; the commit graph now fetches internally instead