From e72f5b4a00e7d14206c2b69bf8bb873c6506f317 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Fri, 9 Dec 2022 17:03:29 -0800 Subject: [PATCH] :memo: Added small additional note regarding merge --- git_basics.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/git_basics.txt b/git_basics.txt index 7a24d6fe..ccb07b7a 100644 --- a/git_basics.txt +++ b/git_basics.txt @@ -107,6 +107,9 @@ git checkout main git merge new_branch git push your_remote +# Be sure to clean up the merged branch as it is now part of the main project +git remote rm new_remote + # Note: This will automatically close the pull request on the repository, so if you need to message them regarding this, be sure to do so.