davidberenstein1957 commited on
Commit
58f91b3
·
1 Parent(s): bfc23da

docs: clarify git push instructions in README to specify branch and remote

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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
  ```