File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,16 @@ When starting a new feature:
24
24
### 3. From the ` master ` branch, checkout a new feature branch and do your work locally in it
25
25
` git checkout -b your_feature_branch_name ` -> creates new branch from current branch (with commits from current branch)<br />
26
26
27
- Also :<br />
28
- ` git checkout other_branch_name ` -> switches from your current branch to another branch<br />
29
- ` git branch ` -> shows you which branch you're currently working in<br />
27
+ Related :<br />
28
+ * ` git checkout other_branch_name ` -> switches from your current branch to another branch<br />
29
+ * ` git branch ` -> shows you which branch you're currently working in<br />
30
30
31
31
### 4. Check your changes; determine out what you want to include in the commit
32
32
` git status ` -> will show all files changed<br />
33
33
` git diff ` -> will show specific lines changed<br />
34
34
35
35
### 5. Add and commit your changes within your development/feature branch
36
- ` git add specific_files ` or ` git add . ` (for all files) -> select files to include<br />
36
+ ` git add specific_files ` OR ` git add . ` (for all files) -> select files to include<br />
37
37
` git commit -m 'your_message_in_here' ` -> to include a helpful message with your commit<br />
38
38
(if you make a mistake, you can ` git reset HEAD~ ` to revert)<br />
39
39
You can’t perform that action at this time.
0 commit comments