summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorAdam Olech <nddr89@gmail.com>2021-12-26 23:20:20 +0100
committerAdam Olech <nddr89@gmail.com>2021-12-26 23:20:20 +0100
commit535b9feabf6b6d4c4ac883026cf13507c903adc8 (patch)
tree9b8d4352a095e4e74133223d5626b2833f8295ca /content
parent8254605f3a376ffcb9bf991118487cba0e06a9f4 (diff)
cheatsheets/git: add snippet
Diffstat (limited to 'content')
-rw-r--r--content/cheatsheets/git.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/content/cheatsheets/git.md b/content/cheatsheets/git.md
index e0d918e..afeb11b 100644
--- a/content/cheatsheets/git.md
+++ b/content/cheatsheets/git.md
@@ -11,3 +11,9 @@ disable_share = true
git config --global user.name "Adam Olech"
git config --global user.email "nddr89@gmail.com"
```
+
+## Fix up partially added submodule
+
+```bash
+git submodule add --force https://github.com/google/googletest.git googletest
+```