diff --git a/Branching-and-Merging.md b/Branching-and-Merging.md index 5177441..976c8a0 100644 --- a/Branching-and-Merging.md +++ b/Branching-and-Merging.md @@ -44,6 +44,9 @@ git rebase origin/master git checkout master git pull git merge --no-ff your_branch_name +# assuming everything went well... +git push +git push --delete origin your_branch_name ``` ## Example