Skip to content

Commit

Permalink
Merge pull request #7407 from nabobalis/new
Browse files Browse the repository at this point in the history
Information on syncing tags in the newcomers guide
  • Loading branch information
nabobalis committed Jan 31, 2024
2 parents 090641f + 50c7572 commit 6ffcb81
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/dev_guide/contents/newcomers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ This will make submitting changes easier in the long term for you:
$ git clone https://github.com/<username>/sunpy.git sunpy-git
$ cd sunpy-git
# This adds the main sunpy repository as a remote called "upstream".
# This will help you keep your fork up to date with the main sunpy repository.
$ git remote add upstream https://github.com/sunpy/sunpy.git
# This retrieves the tags from the main sunpy repository, which are used for determining the version of your fork.
$ git fetch --tags upstream
$ pip install -e ".[dev]"
.. note::
Expand Down

0 comments on commit 6ffcb81

Please sign in to comment.