From b972c1bfb03ad54fadbf0c442881233d95e3733e Mon Sep 17 00:00:00 2001 From: Patrick von Platen Date: Wed, 6 Jan 2021 14:36:55 +0100 Subject: [PATCH] finalize (#9431) --- docs/source/model_sharing.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/source/model_sharing.rst b/docs/source/model_sharing.rst index 2adbd0c4da..475c50b738 100644 --- a/docs/source/model_sharing.rst +++ b/docs/source/model_sharing.rst @@ -78,7 +78,9 @@ Once you are logged in with your model hub credentials, you can start building y transformers-cli repo create your-model-name -This creates a repo on the model hub, which can be cloned. +This creates a repo on the model hub, which can be cloned. If you want to create a repo under a specific organization, +you might find the `upload_a_new_repo.py script +`__ useful. .. code-block:: bash @@ -98,8 +100,10 @@ with any other git repo. echo "hello" >> README.md git add . && git commit -m "Update from $USER" -We are intentionally not wrapping git too much, so that you can go on with the workflow you're used to and the tools -you already know. +If you want to change multiple repos at once, the `change_config.py script +`__ can probably save you some time. We +are intentionally not wrapping git too much, so that you can go on with the workflow you're used to and the tools you +already know. The only learning curve you might have compared to regular git is the one for git-lfs. The documentation at `git-lfs.github.com `__ is decent, but we'll work on a tutorial with some tips and tricks