Venkat.R
commited on
Commit
•
8261ee3
1
Parent(s):
fdfa2b0
doc(base): add setup doc
Browse files
setup.md
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Install Git LFS
|
2 |
+
```
|
3 |
+
brew install git-lfs
|
4 |
+
```
|
5 |
+
or download from https://git-lfs.github.com/
|
6 |
+
|
7 |
+
## Update global git config
|
8 |
+
$ git lfs install
|
9 |
+
|
10 |
+
## Update system git config
|
11 |
+
$ git lfs install --system
|
12 |
+
|
13 |
+
## Entire Clone
|
14 |
+
```
|
15 |
+
git clone https://huggingface.co/webslate/transactify
|
16 |
+
```
|
17 |
+
## Light Clone
|
18 |
+
```
|
19 |
+
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/webslate/transactify
|
20 |
+
```
|