diff --git a/topics/git/README.md b/topics/git/README.md index 3beb8a9..99d4e40 100644 --- a/topics/git/README.md +++ b/topics/git/README.md @@ -139,14 +139,13 @@ True
You have two branches - main and devel. How do you make sure devel is in sync with main?
- + ``` git checkout main git pull git checkout devel git merge main ``` -