diff options
Diffstat (limited to 'doc/source/dev')
| -rw-r--r-- | doc/source/dev/index.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/doc/source/dev/index.rst b/doc/source/dev/index.rst index 22ab55b31..b4479fa0d 100644 --- a/doc/source/dev/index.rst +++ b/doc/source/dev/index.rst @@ -60,12 +60,16 @@ Here's the short summary, complete TOC links are below: - ``upstream``, which refers to the ``numpy`` repository - ``origin``, which refers to your personal fork -2. Develop your contribution: - - * Pull the latest changes from upstream:: + * Pull the latest changes from upstream, including tags:: git checkout main - git pull upstream main + git pull upstream main --tags + + * Initialize numpy's submodules:: + + git submodule update --init + +2. Develop your contribution: * Create a branch for the feature you want to work on. Since the branch name will appear in the merge message, use a sensible name |
