From 97f29e28574b8fd15c360ded0e2fdfe281684789 Mon Sep 17 00:00:00 2001 From: Barb Cutler Date: Wed, 5 Jun 2024 15:06:17 -0400 Subject: [PATCH] add rm instructions --- _docs/developer/getting_started/commit_to_PR_from_fork.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_docs/developer/getting_started/commit_to_PR_from_fork.md b/_docs/developer/getting_started/commit_to_PR_from_fork.md index 0e8f235b..af95ff3a 100644 --- a/_docs/developer/getting_started/commit_to_PR_from_fork.md +++ b/_docs/developer/getting_started/commit_to_PR_from_fork.md @@ -120,6 +120,12 @@ The instructions below are for command line use of git. 7. Confirm that you can see the changes on the Github website for the PR. +8. NOTE that when you move on to work on another PR from a fork, you will need to + cleanup / unset the upstream before you can set it to another repository: + + ``` + git remote rm upstream + ``` ---