|
@@ -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
|
|
|
|