Datasets:
Tasks:
Text Generation
Formats:
parquet
Sub-tasks:
language-modeling
Languages:
Danish
Size:
10M - 100M
ArXiv:
DOI:
License:
Kenneth Enevoldsen
commited on
docs: updated submitting a PR
Browse files- 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/
|
| 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.
|