Spaces:
Running
Running
Commit
·
58f91b3
1
Parent(s):
bfc23da
docs: clarify git push instructions in README to specify branch and remote
Browse files
README.md
CHANGED
@@ -76,8 +76,8 @@ First, add the remote:
|
|
76 |
git remote add hf https://huggingface.co/spaces/PrunaAI/InferBench
|
77 |
```
|
78 |
|
79 |
-
Then push the changes:
|
80 |
|
81 |
```
|
82 |
-
git push hf --force
|
83 |
```
|
|
|
76 |
git remote add hf https://huggingface.co/spaces/PrunaAI/InferBench
|
77 |
```
|
78 |
|
79 |
+
Then push the changes of your branch to the remote:
|
80 |
|
81 |
```
|
82 |
+
git push hf $(git rev-parse --abbrev-ref HEAD):main --force
|
83 |
```
|