Skip to content

Commit

Permalink
Small orphaned tweaks from #947
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-c committed Jul 26, 2022
1 parent 10908f8 commit 300b628
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions docs/dev/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,4 @@ __version__ = "<VERSION+1>.dev0" # For example, after releasing v0.5.0 or v0.5.
10. Push the changes!
```
git push origin main
```
"""
```
3 changes: 1 addition & 2 deletions docs/source/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ need to specify:
```

To upload more than one file at a time, take a look at this [guide](how-to-upstream)
which will introduce you to the [`Repository`] class and other methods for uploading
files.
which will introduce you to several methods for uploading files (with or without git).

## Next steps

Expand Down
5 changes: 3 additions & 2 deletions src/huggingface_hub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ to the Hub: https://huggingface.co/docs/hub/adding-a-model.

### API utilities in `hf_api.py`

You don't need them for the standard publishing workflow, however, if you need a
You don't need them for the standard publishing workflow (ie. using git command line), however, if you need a
programmatic way of creating a repo, deleting it (`⚠️ caution`), pushing a
single file to a repo or listing models from the Hub, you'll find helpers in
`hf_api.py`. Some example functionality available with the `HfApi` class:
Expand All @@ -86,6 +86,7 @@ single file to a repo or listing models from the Hub, you'll find helpers in
* `list_repo_objects()`
* `delete_repo()`
* `update_repo_visibility()`
* `create_commit()`
* `upload_file()`
* `delete_file()`

Expand Down Expand Up @@ -281,7 +282,7 @@ if other errors happen in your script (a failed push counts as done).

### Need to upload very large (>5GB) files?

To upload large files (>5GB 🔥), you need to install the custom transfer agent
To upload large files (>5GB 🔥) from git command-line, you need to install the custom transfer agent
for git-lfs, bundled in this package.

To install, just run:
Expand Down

0 comments on commit 300b628

Please sign in to comment.