Skip to content

Latest commit

 

History

History
80 lines (50 loc) · 1.2 KB

File metadata and controls

80 lines (50 loc) · 1.2 KB

Workspace

📌Personal Open Source Workspace

Personal workspace for fast work from outdoor 😅

Git Setup Command

git config --global user.name "hmmhmmhm"
git config --global user.email hmmhmmhm@naver.com

Git Login Command

git clone https://github.com/hmmhmmhm/private_mds.git

Download Git (All Download)

git clone https://github.com/hmmhmmhm/workspace
cd workspace
git submodule init
git submodule update
echo "Done!"

Add specific sub module

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,

Download Git (Only List)

git clone https://github.com/hmmhmmhm/workspace
cd workspace
echo "Done!"

Specific module download

git submodule update <module-name>

Specific module initialize

git checkout master