diff options
| -rw-r--r-- | content/cheatsheets/git.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/content/cheatsheets/git.md b/content/cheatsheets/git.md new file mode 100644 index 0000000..e0d918e --- /dev/null +++ b/content/cheatsheets/git.md @@ -0,0 +1,13 @@ ++++ +title = "git" +disable_share = true ++++ + +# Configuration + +## Set username and email + +```bash +git config --global user.name "Adam Olech" +git config --global user.email "nddr89@gmail.com" +``` |
