diff --git a/Branching-and-Merging.md b/Branching-and-Merging.md index 178d12e..1b6ed9a 100644 --- a/Branching-and-Merging.md +++ b/Branching-and-Merging.md @@ -26,7 +26,7 @@ git rebase -i origin/master git push -u origin your_branch_name ``` -*Tip: make lots of small commits, then squash them into one or several bigger commits before pushing. This helps organize your work, so that logically separate changes can be placed into separate commits without manually splitting an existing commit* +*Tip: make lots of small commits as you work, then squash them into one or several bigger commits before pushing. This helps organize your work, so that logically separate changes can be placed into separate commits without manually splitting an existing commit* ## Rebase and non-ff-merge into master when you're done