From 1ddd1df290e5a3fe96c01acef64384a2353240d2 Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Mon, 30 Jan 2017 01:33:26 +0100
Subject: [PATCH] re-add modules as hidden folders

---
 .git-fat      | 1 +
 .gitmodules   | 6 ++++++
 .ppam-mpi     | 1 +
 initialize.sh | 4 ++--
 4 files changed, 10 insertions(+), 2 deletions(-)
 create mode 160000 .git-fat
 create mode 160000 .ppam-mpi

diff --git a/.git-fat b/.git-fat
new file mode 160000
index 0000000..286bcd3
--- /dev/null
+++ b/.git-fat
@@ -0,0 +1 @@
+Subproject commit 286bcd30cea5f86363a04a9313afaf9e2e7a7b81
diff --git a/.gitmodules b/.gitmodules
index e69de29..9e1c85b 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -0,0 +1,6 @@
+[submodule ".ppam-mpi"]
+	path = .ppam-mpi
+	url = git@auder.net:ppam-mpi
+[submodule ".git-fat"]
+	path = .git-fat
+	url = https://github.com/yagu0/git-fat.git
diff --git a/.ppam-mpi b/.ppam-mpi
new file mode 160000
index 0000000..ecd8468
--- /dev/null
+++ b/.ppam-mpi
@@ -0,0 +1 @@
+Subproject commit ecd8468e7849636d2ced2012b5fa0ac4389da3ea
diff --git a/initialize.sh b/initialize.sh
index a596694..2ed401a 100755
--- a/initialize.sh
+++ b/initialize.sh
@@ -5,11 +5,11 @@ git submodule init && git submodule update --merge
 #filter for git-fat
 echo -e '*.pdf filter=fat\n*.tar.xz filter=fat' > .gitattributes
 #pre-push hook: git fat push, submodules update
-echo -e '#!/bin/sh\ngit fat push\ngit submodule update --merge' > .git/hooks/pre-push
+echo -e '#!/bin/sh\n./.git-fat/git-fat push\ngit submodule update --merge' > .git/hooks/pre-push
 #.gitfat file with remote on gitfat@auder.net
 echo -e '[rsync]\nremote = gitfat@auder.net:~/files' > .gitfat
 #manual git-fat init: with relative path to binary
 #1] remove filter if exists http://stackoverflow.com/questions/12179437/replace-3-lines-with-another-line-sed-syntax
 sed -i '1N;$!N;s/\[filter "fat"\]\n.*\n.*//;P;D' .git/config
 #2] place new filter
-echo -e '[filter "fat"]\n\tclean = ./git-fat/git-fat filter-clean\n\tsmudge = ./git-fat/git-fat filter-smudge' >> .git/config
+echo -e '[filter "fat"]\n\tclean = ./.git-fat/git-fat filter-clean\n\tsmudge = ./.git-fat/git-fat filter-smudge' >> .git/config
-- 
2.44.0