We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 288bc51 commit c339b1dCopy full SHA for c339b1d
README.md
@@ -2,3 +2,21 @@
2
3
**git-cache-rs** is a git helper that allows caching clones in a central folder
4
so consequtive clones become faster.
5
+
6
+It works by first cloning into a cache folder (`~/.gitcache` by default), then
7
+cloning locally out from there. The next time the same repository is cloned, it
8
+will be cloned from the cache.
9
10
+## Installation
11
12
+ cargo install git-cache
13
14
+## How to use
15
16
+Just use `git cache clone <clone options>` instead of `git clone <clone
17
+options>`. Add `-U` if you'd like the cached version to update from the
18
+original repository before cloning (not needed for the first clone).
19
20
+## License
21
22
+git-cache-rs is licensed under the terms of the Apache License (Version 2.0).
0 commit comments