You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -64,7 +77,7 @@ When you want to attempt a challenge it is good practice to create a branch. Thi
64
77
git branch <branch-name># Create new branch
65
78
git checkout <branch-name># Checkout to the new branch
66
79
# or
67
-
git checkout -b <branch-name# Checkout to a new branch
80
+
git checkout -b <branch-name># Checkout to a new branch
68
81
```
69
82
70
83
For your training. I would recommend creating a new branch for every challenge you attempt and merging them with the `main` (default) branch once you are done. This allows you to make modifications to each of your attempts independent of each other as well as make it easier to resync with the template repository should anything change at its base. it also allows you to get some meaningful practice with Git which is one of the most used developer tools in the world.
0 commit comments