blob: da2b31a8fa27aabc087b94e52b8856fd204ed45b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
# Roadmap
* Configuration
* [X] Parsing
* [ ] Includes
* [ ] Writing
* [X] Object IDs
* [X] SHA-256
* [X] SHA-1
* [X] Object model (incl., parse, serialize)
* [X] Blobs
* [X] Trees
* [X] File mode definitions
* [X] Entry insertion ordering
* [X] Traversal
* [ ] Pathspec
* [X] Commits
* [X] Annotated tags
* [X] Stored objects
* Further cryptography
* [ ] OpenPGP signatures
* [ ] SSH signatures
* [X] Reading object stores
* [X] Pluggable interface
* [X] Chain lookup store
* [X] Bundle store
* [X] MRU lookup store
* [X] Reading loose objects
* [ ] Promisor remotes
* [ ] Alternates
* [X] Reading packed objects
* [X] Pack index lookups
* [X] Delta caching
* [X] Delta application
* [ ] Pack-wide bloom filters
* [ ] Multi pack indexes
* [ ] Writing objects
* [X] Loose object writing
* Misc bundle features
* [ ] Writing bundles
* Misc packfile features
* [X] Writing pack indexes
* [X] Writing reverse pack indexes
* [ ] Writing packfiles
* [ ] Writing thin packs
* [ ] Compressing deltas
* [ ] Delta islands
* [ ] Pack verification
* Compression
* [ ] Plugabble compression algorithms
* [X] ZLIB support
* [ ] DEFLATE optimizations
* [X] Adler-32 SIMD optimizations
* [X] References
* [X] Detached references
* [X] Symbolic references
* [X] Name verification/resolution
* [X] Annotated tag ref peeling
* [ ] Describe
* [ ] Revision syntax
* [ ] Namespaces
* [ ] Replace refs, grafts
* [X] Reference stores
* [X] Chain lookup store
* [X] Files reference store
* [X] Reading loose refs
* [X] Reading packed refs
* [X] Atomic writes
* [X] Batched writes
* [ ] Packing refs
* [ ] Reflogs
* [ ] Reftable
* Reachability
* [X] Have/wants walks
* [X] Is ancestor
* [X] Merge bases
* [X] Commit graph
* [X] Changed path bloom filters
* [X] Chained graphs
* [ ] Writing
* [ ] Reachability bitmaps
* [ ] For a single packfile
* [ ] For Multi pack indexes
* Misc repository
* [X] Opening relevant stores
* [ ] Creating repositories
* [ ] Filter branch/repo
* [ ] Fast import/export
* [ ] Git notes
* [ ] Git attributes
* [ ] Pseudorefs
* Integrity and maintenance
* [ ] Fsck
* [ ] Repacking
* [ ] Garbage collection
* [ ] Cruft packing
* [ ] Expiration
* [ ] Grep
* [ ] Submodules
* [ ] Worktrees
* [ ] Archive
* [ ] LFS
* [ ] Revision log walk
* [ ] Topological ordering
* [ ] Date ordering
* [ ] Path-limited
* [ ] Diffing
* [ ] Blame
* [ ] Annotate
* [X] Tree diffing
* [ ] Similarity/rename/copy detection
* [ ] Multi-way diffs
* [ ] Patch-id
* [ ] Range-diff
* Blob diffing
* [ ] Word diffs
* [X] Myers
* [ ] Patience
* [ ] Histogram
* [ ] Tree-way
* [ ] Format patch
* [ ] Apply/amend patch
* Branch integration/rewrite/etc methods
* [ ] Merge
* [ ] Recursive
* [ ] ORT
* [ ] Rebase
* [ ] Cherry pick
* [ ] Revert
* [ ] Rerere
* Network protocols and related features
* [X] pkt-line
* [X] side-band-64k
* [X] Ingesting packfiles
* [X] Quarantine areas
* [X] Un-thinning thin packs
* Version 0, version 1 protocols
* [X] Server side
* [X] Reference advertisement
* [X] Capability negotiation
* [X] Receive
* [ ] "Upload"
* [ ] Client side
* [ ] Send
* [ ] Fetch
* Version 2 protocol
* [ ] Server side
* [ ] "Upload"
* [ ] Client side
* [ ] Fetch
* Protocol-independent logic
* Common
* [X] Progress meters
* Client side
* [ ] Refspec
* [ ] Fetch
* [ ] Partial clones
* [ ] Object filtering
* [ ] Bundle URI
* [ ] Packfile URI
* [ ] Shallow clones
* [ ] Send
* Server side
* [ ] Upload
* [ ] Object filtering
* [X] Receive
* [ ] Signed push
* Hooks
* Slots
* [ ] After ref negotiation
* [X] After object unpacking
* Provided samples
* [X] Chain
* [X] Force push rejection
* [ ] Working trees
* [ ] Stashing
* [ ] Ignore rules
* [ ] Checkouts
* [ ] Sparse checkouts
* [ ] CR/LF conversions
* [ ] File mode conversions
* [ ] Indexes
* [ ] Conflict resolution
* [ ] Split index
* [ ] Sparse index
* [ ] Untracked cache
* [ ] Status listing
* [ ] Filesystem monitor
* [ ] Worktree
* [ ] Common directory
* [ ] Worktree-specific references
* Research
* [ ] Dynamic packfiles
* [ ] Compaction; page-sized hole punching
* [ ] Dynamic indexing
* [ ] Linear/extendible/spiral hashing
* [ ] Dynamic reachability bitmaps
## Not planned
* CLI tools
* Clone
* Anything reasonably considered "porcelain"
* Credential helper
* Transports
* Auth
* Remote management
* Bisect
* Any use of env vars
* Repository discovery walking
|