Skip to content

Commit

Permalink
Added pulling instructions back in, giving people the option of eithe…
Browse files Browse the repository at this point in the history
…r pulling or rebasing
  • Loading branch information
bourque authored Dec 21, 2023
1 parent 61a569b commit dcadb83
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,21 @@ Keeping your fork updated
^^^^^^^^^^^^^^^^^^^^^^^^^

You can keep your personal fork up-to-date with the ``IMAP-Science-Operations-Center`` ``imap_processing`` repository by
fetching and rebasing with the ``upstream`` remote:
either fetching and rebasing with the ``upstream`` remote, or fetching and pulling with the ``upstream`` remote:

.. code-block:: bash
git checkout dev
git fetch upstream
git rebase -i upstream/dev
or

.. code-block:: bash
git fetch upstream dev
git pull upstream/dev
.. _collaborating-on-someone-elses-fork:

Expand All @@ -137,4 +144,4 @@ nominal workflow for contributing:
git fetch <username>
git checkout -b <branchname> <username>/<branchname>
# Make some changes via add/commit cycle
git push <username> <branchname>
git push <username> <branchname>

0 comments on commit dcadb83

Please sign in to comment.