summaryrefslogtreecommitdiff
path: root/content/cheatsheets
diff options
context:
space:
mode:
Diffstat (limited to 'content/cheatsheets')
-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
+```