소스 검색

Fix typo on git guide

DricomDragon 5 년 전
부모
커밋
c158c9d43f
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      Guides/git.md

+ 5 - 1
Guides/git.md

@@ -9,9 +9,13 @@ For a good workflow with branches, [see this article](https://nvie.com/posts/a-s
 ## Configuration
 
 `git config --global user.email "contact@jovian-hersemeule.eu"`
+
 `git config --global user.name "DricomDragon"`
+
 `git config --global core.editor "vim"`
+
 `git config --global push.followTags true`
+
 `git config --global diff.tool vimdiff`
 
 You can replace `--global` by `--local` to configure a specific project.
@@ -38,7 +42,7 @@ See **config** for setting his own git tool for diff.
 
 ### Powerful history
 
-`git commit -v` see diff
+`git commit -v` see diff while committing
 
 `git log -p` see diff for every commit