From 946e8046df4d5ab0019b55c5f5309422606388fe Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Fri, 6 Mar 2020 16:02:10 -0800 Subject: [PATCH 1/2] Add submodules for nlio, nlassert and nlunit-test --- .gitmodules | 12 ++++++++++++ third_party/nlassert | 1 + third_party/nlio | 1 + third_party/nlunit-test | 1 + 4 files changed, 15 insertions(+) create mode 100644 .gitmodules create mode 160000 third_party/nlassert create mode 160000 third_party/nlio create mode 160000 third_party/nlunit-test diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000000000..b7b3bae84d9ad7 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,12 @@ +[submodule "third_party/nlio"] + path = third_party/nlio + url = https://github.com/nestlabs/nlio.git + branch = master +[submodule "third_party/nlassert"] + path = third_party/nlassert + url = https://github.com/nestlabs/nlassert.git + branch = master +[submodule "third_party/nlunit-test"] + path = third_party/nlunit-test + url = https://github.com/nestlabs/nlunit-test.git + branch = master diff --git a/third_party/nlassert b/third_party/nlassert new file mode 160000 index 00000000000000..700bd55d6ea6ca --- /dev/null +++ b/third_party/nlassert @@ -0,0 +1 @@ +Subproject commit 700bd55d6ea6ca1bedaa2f86bc17e8c0313139aa diff --git a/third_party/nlio b/third_party/nlio new file mode 160000 index 00000000000000..9f9f503b77d7d0 --- /dev/null +++ b/third_party/nlio @@ -0,0 +1 @@ +Subproject commit 9f9f503b77d7d061ec5a50613b880e9c5bc7ad30 diff --git a/third_party/nlunit-test b/third_party/nlunit-test new file mode 160000 index 00000000000000..eba9209293e48b --- /dev/null +++ b/third_party/nlunit-test @@ -0,0 +1 @@ +Subproject commit eba9209293e48b677d9c2f733f938041ba2ebdfb From b2b09fb938432d4caf09d8cdf9f7dc651be5739b Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Fri, 6 Mar 2020 17:02:28 -0800 Subject: [PATCH 2/2] Move git submodules to third_party//repo --- .gitmodules | 16 ++++++++-------- third_party/{nlassert => nlassert/repo} | 0 third_party/{nlio => nlio/repo} | 0 third_party/{nlunit-test => nlunit-test/repo} | 0 4 files changed, 8 insertions(+), 8 deletions(-) rename third_party/{nlassert => nlassert/repo} (100%) rename third_party/{nlio => nlio/repo} (100%) rename third_party/{nlunit-test => nlunit-test/repo} (100%) diff --git a/.gitmodules b/.gitmodules index b7b3bae84d9ad7..5023d02b623d42 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,12 +1,12 @@ -[submodule "third_party/nlio"] - path = third_party/nlio - url = https://github.com/nestlabs/nlio.git - branch = master -[submodule "third_party/nlassert"] - path = third_party/nlassert +[submodule "third_party/nlassert/repo"] + path = third_party/nlassert/repo url = https://github.com/nestlabs/nlassert.git branch = master -[submodule "third_party/nlunit-test"] - path = third_party/nlunit-test +[submodule "third_party/nlio/repo"] + path = third_party/nlio/repo + url = https://github.com/nestlabs/nlio.git + branch = master +[submodule "third_party/nlunit-test/repo"] + path = third_party/nlunit-test/repo url = https://github.com/nestlabs/nlunit-test.git branch = master diff --git a/third_party/nlassert b/third_party/nlassert/repo similarity index 100% rename from third_party/nlassert rename to third_party/nlassert/repo diff --git a/third_party/nlio b/third_party/nlio/repo similarity index 100% rename from third_party/nlio rename to third_party/nlio/repo diff --git a/third_party/nlunit-test b/third_party/nlunit-test/repo similarity index 100% rename from third_party/nlunit-test rename to third_party/nlunit-test/repo