-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
114 lines (85 loc) · 1.5 KB
/
TODO
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
Things to be implemented.
Modules:
=======
- Repository
- File storage
- Pack handling
- History traversal
- Diff
- Merge
- Config
- Submodules
- Network protocol
- Network client
- Network server
- Working directory support
- Gogs module
Repository
----------
+ Object types and OID
+ Commit object
+ Raw object (and blob)
+ Tree object
+ Tag object
+ References (regular and special)
+ Resolving references
- Time parsers
? check completeness
File storage
------------
+ Loose objects
+ Packs
+ Refs
? check completeness
Pack handling
-------------
+ Reading thick packs
- Reading thin packs
- Writing packs
- Deltification
+ Undeltification
? All sort of indexes
? Network-related pack handling
History traversal
-----------------
+ Following commit graph
+ Walking commit graph with user handlers
+ Basic history simplification
- Simple interface
? Make comprehensive history traversal tests
Diff
----
- Make diffs out of commits
? todo
Merge
-----
- Basic merge algorithm
- Conflict-free merge
- Merge with conflicts
? todo
Config
------
- Reading git config
- Writing git config
- Validating git config and parsed values
Submodules
----------
? investigate sumbodules
Network protocol
----------------
? todo
Network client
--------------
? todo
Network server
--------------
? todo
Working directory support
-------------------------
- Reading and writing indexes
- Checkouts
- Tracking changes
Gogs module
-----------
Make drop-in replacement for gogs 'git-module' package
? investigate git-module