Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Small orphaned tweaks from #947 #958

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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