LoginSignup
0
0

More than 3 years have passed since last update.

git submodule

Posted at

submodule追加

git submodule add <git url> <path>

submoduleのステータス確認

git submodule status

submodule削除

# .git/configの中身の該当箇所を削除(?)
git submodule deinit <path>
# .gitmodules/modulesの中を削除
rm -rf .gitmodules/modules/<name>
# 実体を削除
rm -rf <path>

submodule更新

git submodule update --remote

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0