From 3966fd4fff641982895429b61dbdd146d602046c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 23 Oct 2013 05:56:21 -0700 Subject: [PATCH] git: Add a submodule with my Git notes I'm using tremily.us hosting while I stub this out, because setting up tons of teensy GitHub repositories is annoying ;). Unfortunately, using Git's submodules self-referentially to checkout local branches in subdirectories is not supported. However, the seperate-repository-per-submodule approach does have benefits for space saving when folks don't use --reference clones. --- .gitmodules | 3 +++ git | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 git diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..5424e29 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "git"] + path = git + url = git://tremily.us/swc-version-control-git.git diff --git a/git b/git new file mode 160000 index 0000000..03ceaf9 --- /dev/null +++ b/git @@ -0,0 +1 @@ +Subproject commit 03ceaf942632835aeb84f7525f178bd9cc002b07 -- 2.26.2