summaryrefslogtreecommitdiff
path: root/content/cheatsheets/git.md
diff options
context:
space:
mode:
authorAdam Olech <nddr89@gmail.com>2021-12-24 15:32:33 +0100
committerAdam Olech <nddr89@gmail.com>2021-12-24 15:32:33 +0100
commit8254605f3a376ffcb9bf991118487cba0e06a9f4 (patch)
treede641a64090660ebea1f6ea3861a9ecd3db8c478 /content/cheatsheets/git.md
parent0ab0a67b4775fcfd1d03147e3a26425d482e798d (diff)
Add git cheatsheet
Diffstat (limited to 'content/cheatsheets/git.md')
-rw-r--r--content/cheatsheets/git.md13
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"
+```