Blame


1 4408b20f 2021-08-26 stsp got:
2 136be4cc 2021-10-03 stsp - Teach 'got merge' to merge changes into an arbitrary subdirectory
3 136be4cc 2021-10-03 stsp of the work tree. This would be nice for merging vendor branches.
4 136be4cc 2021-10-03 stsp Say you have a branch 'llvm-12' which intially contains a 12.0
5 4408b20f 2021-08-26 stsp release tree as published by the LLVM project, added to the repository
6 4408b20f 2021-08-26 stsp with a command such as 'got import -b llvm-12'. On the main branch we
7 4408b20f 2021-08-26 stsp would want to merge files from the llvm-12 branch into /usr/src/gnu/llvm
8 4408b20f 2021-08-26 stsp instead of the root directory checked out at /usr/src.
9 4408b20f 2021-08-26 stsp The next LLVM release 12.1 would later be committed onto the llvm-12
10 4408b20f 2021-08-26 stsp branch and then merged into main at /usr/src/gnu/llvm in the same way.
11 54f77e21 2019-01-06 stsp
12 1b99d152 2020-11-16 stsp libexec:
13 0e5df984 2021-09-23 stsp - add http(s) transport with libtls in dial.c, speaking Git's HTTP protocol
14 0e5df984 2021-09-23 stsp via got-fetch-pack or a new helper
15 1b99d152 2020-11-16 stsp
16 54f77e21 2019-01-06 stsp tog:
17 54f77e21 2019-01-06 stsp - implement horizonal scrolling in all views
18 54f77e21 2019-01-06 stsp - implement horizonal split view mode
19 5a5bf2ac 2019-06-25 stsp - implement 'limit' for 'tog log' (like search but display matched commits only)
20 72640c6b 2019-03-07 stsp - allow moving to prev/next blamed line in diff view if opened from blame view,
21 72640c6b 2019-03-07 stsp similar to how the diff view can switch commits if opened from log view
22 1b99d152 2020-11-16 stsp
23 1b99d152 2020-11-16 stsp gotweb:
24 1b99d152 2020-11-16 stsp - tracey has a gotwebd thingy in progress somewhere
25 4408b20f 2021-08-26 stsp
26 4408b20f 2021-08-26 stsp gotd:
27 4408b20f 2021-08-26 stsp - needs to be designed and implemented