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 e2bd307e 2023-02-24 stsp - Teach 'got merge' to forward a branch reference if possible, instead of
12 e2bd307e 2023-02-24 stsp creating a merge commit. Forwarding should only be done if linear
13 1756e377 2023-02-24 stsp history exists from the tip of the branch being merged to the tip of
14 1756e377 2023-02-24 stsp the work tree's branch, and if the tip of the work tree's branch is
15 80be18be 2023-02-24 stsp itself not a merge commit (this makes "stacked" merges possible
16 e2bd307e 2023-02-24 stsp by default, and prevents a 'main' branch reference from being forwarded
17 1756e377 2023-02-24 stsp to a vendor branch in case no new commits were added to 'main' since
18 1756e377 2023-02-24 stsp the previous vendor merge). Provide an option (-M) which forces creation
19 e2bd307e 2023-02-24 stsp of a merge commit, for cases where users deem forwarding undesirable.
20 bc8ea124 2022-07-31 stsp - When a clone fails the HEAD symref will always point to "refs/heads/main"
21 bc8ea124 2022-07-31 stsp (ie. the internal default HEAD symref of Got). Resuming a failed clone with
22 bc8ea124 2022-07-31 stsp 'got fetch' is supposed to work. To make this easier, if the HEAD symref
23 bc8ea124 2022-07-31 stsp points to a non-existent reference it should be updated by 'got fetch'
24 bc8ea124 2022-07-31 stsp to match the HEAD symref sent by the server.
25 26a98172 2023-01-30 stsp - If invoked in a work tree, got fetch could default to fetching the work
26 26a98172 2023-01-30 stsp tree's current branch, instead of fetching the remote repository's HEAD.
27 e1ecf949 2023-02-01 op - 'got patch' should be able to detect an already applied patch.
28 e1ecf949 2023-02-01 op - 'got patch' should ideally do more passes if a patch doesn't apply and
29 e1ecf949 2023-02-01 op try fancy things (like ignoring context and whitespaces) only in later
30 e1ecf949 2023-02-01 op passes.
31 3d1fb67a 2023-02-06 op - investigate whether it's worth for 'got patch' to memory-map the files to
32 e1ecf949 2023-02-01 op edit. (c.f. Plan A / Plan B in Larry' patch.)
33 ac8bf7dc 2023-02-03 stsp - when fetching pack files got should verify that the requested branch tips
34 ac8bf7dc 2023-02-03 stsp are present in the pack file sent by the server, before making this pack
35 ac8bf7dc 2023-02-03 stsp file visible to readers of the repository
36 54f77e21 2019-01-06 stsp
37 dfe53854 2022-07-18 stsp network protocol:
38 dfe53854 2022-07-18 stsp - add http(s) transport with libtls, speaking the two Git HTTP protocols
39 dfe53854 2022-07-18 stsp (both "dumb" and "smart" need to work) via got-fetch-pack, or a new helper
40 dfe53854 2022-07-18 stsp like got-fetch-http; it is fine if HTTP remains a fetch-only protocol, and
41 dfe53854 2022-07-18 stsp works only against servers which don't require authentication for fetches;
42 dfe53854 2022-07-18 stsp anything beyond this would require a full-featured HTTP client (Git uses
43 dfe53854 2022-07-18 stsp libcurl, which we cannot use as it is not in the OpenBSD base system)
44 1b99d152 2020-11-16 stsp
45 54f77e21 2019-01-06 stsp tog:
46 e1fe8f85 2022-07-18 stsp - make 'tog log' respond to key presses while 'loading...' history; loading
47 e1fe8f85 2022-07-18 stsp can be slow for paths in a deep history if the path has not been changed
48 e1fe8f85 2022-07-18 stsp very often, and 'tog log' blocks far too long in this case
49 e1fe8f85 2022-07-18 stsp - make it possible to view the contents of tag objects
50 e1fe8f85 2022-07-18 stsp - verify signed tag objects
51 d6669aa7 2023-01-30 stsp - make it possible to toggle the parent to diff against in merge commits
52 1b99d152 2020-11-16 stsp
53 1d09d7aa 2022-08-31 stsp gotwebd:
54 d6669aa7 2023-01-30 stsp - reply with a non-200 reply code when an error occurs
55 d6669aa7 2023-01-30 stsp - fix COMMITS page for paths that were deleted and/or re-added to the
56 9f435bea 2023-01-17 op repository. One way would be not to let the commit graph filter paths.
57 9f435bea 2023-01-17 op As an additional optimization we could keep a tailq or the object-id
58 9f435bea 2023-01-17 op set for everything traversed in the repo to have fast reverse-lookups.
59 9f435bea 2023-01-17 op (has the additional requirement to invalidate it when the reference
60 9f435bea 2023-01-17 op timestamp changes)
61 575dd20f 2022-08-04 stsp - run-time changes of addresses on interfaces are being ignored by gotwebd
62 575dd20f 2022-08-04 stsp - perhaps "bind interface" should be removed in favour of using only IP
63 575dd20f 2022-08-04 stsp addresses? This makes the address family selection explicit and avoids
64 575dd20f 2022-08-04 stsp having to monitor interfaces for dynamic address changes.
65 e1ecf949 2023-02-01 op - add breadcrumbs to navigate in the directory tree
66 e1ecf949 2023-02-01 op - add more action links, like "raw", "blame" and "commits" in the blob
67 e1ecf949 2023-02-01 op page.
68 ea872438 2023-02-03 op - add a "rawdiff" page to serve a diff as text/plain (or text/x-patch),
69 ea872438 2023-02-03 op or maybe "rawcommit" that includes the commentary too.
70 575fac0e 2023-02-03 op - consider changing the URL scheme to avoid so many query parameters
71 4408b20f 2021-08-26 stsp
72 4408b20f 2021-08-26 stsp gotd:
73 c18e88e5 2023-01-15 stsp - ensure all error messages are propagated to clients before disconnecting,
74 c18e88e5 2023-01-15 stsp there are probably still some cases where such error reporting is skipped
75 c18e88e5 2023-01-15 stsp - client connection timeout handling needs to be checked by regress tests,
76 c18e88e5 2023-01-15 stsp and is likely in need of improvement
77 c18e88e5 2023-01-15 stsp - implement stress-tests to observe and fix misbehaviour under load
78 ee6d2355 2023-05-25 stsp - listener's fd-reserve limit needs to be reviewed and perhaps adjusted
79 c18e88e5 2023-01-15 stsp - implement pre-commit checks (in lieu of hook scripts):
80 92923400 2023-04-05 stsp 1. deny branch history rewriting ('got send -f') via gotd.conf [done]
81 c18e88e5 2023-01-15 stsp 2. allow/deny creation/deletion of references via gotd.conf
82 92923400 2023-04-05 stsp 3. deny modifications within a given reference namespace via gotd.conf [done]
83 c18e88e5 2023-01-15 stsp 4. entirely hide a given reference namespace from clients via gotd.conf
84 c18e88e5 2023-01-15 stsp 5. allow/deny addition of binary files to a repo via gotd.conf
85 c18e88e5 2023-01-15 stsp 6. enforce a particular blob size limit via gotd.conf
86 c300209f 2023-01-27 stsp 7. optionally reject merge commits via gotd.conf
87 c18e88e5 2023-01-15 stsp - implement post-commit-event libexec handlers (in lieu of hook scripts):
88 c18e88e5 2023-01-15 stsp 1. commit email notification, plaintext smtp to localhost port 25
89 c18e88e5 2023-01-15 stsp 2. general-purpose HTTP(s) GET/POST request as commit notification,
90 c18e88e5 2023-01-15 stsp should use a format string to encode commit-info in the request URL
91 c18e88e5 2023-01-15 stsp 3. perform the equivalent of 'got send' to another repository
92 c18e88e5 2023-01-15 stsp - keep track of available repository disk space and fail gracefully when
93 c18e88e5 2023-01-15 stsp uploaded pack files would fill up the disk too much, keeping a reserve
94 d6669aa7 2023-01-30 stsp - reuse packed non-delta objects directly (without re-deltification) for speed
95 f2e547bc 2023-05-25 stsp - if no permit statement is given in gotd.conf it is possible to send a branch
96 f2e547bc 2023-05-25 stsp into an empty repository regardless; this should return EPERM instead
97 44ff20fc 2022-12-09 stsp
98 44ff20fc 2022-12-09 stsp gotadmin:
99 44ff20fc 2022-12-09 stsp - teach 'gotadmin cleanup' to remove redundant pack files
100 44ff20fc 2022-12-09 stsp - add support for generating git-fast-export streams from a repository
101 44ff20fc 2022-12-09 stsp - add support for importing git-fast-export streams into a repository
102 0c049f81 2023-02-10 stsp - speed up 'gotadmin pack -a' is too slow on repositories with many pack files