📌Personal Open Source Workspace
Personal workspace for fast work from outdoor 😅
git config --global user.name "hmmhmmhm"
git config --global user.email hmmhmmhm@naver.comgit clone https://github.com/hmmhmmhm/private_mds.gitgit clone https://github.com/hmmhmmhm/workspace
cd workspace
git submodule init
git submodule update
echo "Done!"It must run the following command at the folder location where you want to install the sub-module.
git submodule add <git-url>Remove specific sub module
# Note: a/submodule (no trailing slash)
git submodule deinit -f -- <module-path>
rm -rf .git/modules/<module-path>
git rm -f <module-path>
# or, if want to leave it in your working tree and have done step 0
git rm --cached <module-path>If Internet traffic is limited,
git clone https://github.com/hmmhmmhm/workspace
cd workspace
echo "Done!"git submodule update <module-name>git checkout master