KennethEnevoldsen commited on
Commit
42b4045
1 Parent(s): a62ed1b

docs: updated submitting a PR

Browse files
Files changed (1) hide show
  1. CONTRIBUTING.md +2 -1
CONTRIBUTING.md CHANGED
@@ -42,10 +42,11 @@ Creating a PR on Huggingface is a bit different from creating one on Github.
42
  1) Go to the community tab on huggingface press *new pull request* and choose *on your machine*. Specify the title of the your PR. Then you can simply:
43
 
44
  ```bash
 
45
  git checkout pr/{PR NUMBER}
46
  # make your changes here
47
  # push to hub
48
- git push origin pr/11:refs/pr/11
49
  ```
50
 
51
  Before you make the PR do be sure to make sure that the tests have been run.
 
42
  1) Go to the community tab on huggingface press *new pull request* and choose *on your machine*. Specify the title of the your PR. Then you can simply:
43
 
44
  ```bash
45
+ git fetch origin refs/pr/{PR NUMBER}:pr/{PR NUMBER}
46
  git checkout pr/{PR NUMBER}
47
  # make your changes here
48
  # push to hub
49
+ git push origin pr/{PR NUMBER}:refs/pr/{PR NUMBER}
50
  ```
51
 
52
  Before you make the PR do be sure to make sure that the tests have been run.