diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2023-04-18 15:20:02 -0700 |
---|---|---|
committer | Jonathan Tan <jonathantanmy@google.com> | 2023-07-18 14:21:48 -0700 |
commit | 49beb5ae519e429d8868b8afe24007ae2d17003a (patch) | |
tree | 2f62e063dae6bd9d0f0eb040160362913a1cf5b5 /lib | |
parent | 5dc63514d07fbbbd55a287047d756984169cb23d (diff) | |
download | jgit-49beb5ae519e429d8868b8afe24007ae2d17003a.tar.gz jgit-49beb5ae519e429d8868b8afe24007ae2d17003a.zip |
CommitGraphWriter: write changed-path filters
Add support for writing the BIDX and BDAT chunks of the commit graph
file, as described in man gitformat-commit-graph(5). The ability to read
such chunks will be added in a subsequent commit.
This work is based on earlier work by Kyle Zhao
(Ib863782af209f26381e3ca0a2c119b99e84b679c).
Change-Id: Ic18e6f0eeec7da1e1ff31751aabda5e6952dbe6e
Signed-off-by: kylezhao <kylezhao@tencent.com>
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/BUILD | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,10 @@ java_library( java_library( name = "commons-codec", + visibility = [ + "//org.eclipse.jgit:__pkg__", + "//org.eclipse.jgit.test:__pkg__", + ], exports = ["@commons-codec//jar"], ) |