Skip to content

Commit e44633e

Browse files
committed
added more clarifying formatting...
1 parent 576c368 commit e44633e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

basic_git.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ When starting a new feature:
2424
### 3. From the `master` branch, checkout a new feature branch and do your work locally in it
2525
`git checkout -b your_feature_branch_name` -> creates new branch from current branch (with commits from current branch)<br/>
2626

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/>
3030

3131
### 4. Check your changes; determine out what you want to include in the commit
3232
`git status` -> will show all files changed<br/>
3333
`git diff` -> will show specific lines changed<br/>
3434

3535
### 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/>
3737
`git commit -m 'your_message_in_here'` -> to include a helpful message with your commit<br/>
3838
(if you make a mistake, you can `git reset HEAD~` to revert)<br/>
3939

0 commit comments

Comments
 (0)