sh git子模块的模板命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh git子模块的模板命令相关的知识,希望对你有一定的参考价值。
# add submodule
git submodule add https://hoge.git hoge_directory
# remove submodule
git submodule deinit -f hoge_directory
git rm -f hoge_directory
# clone
git clone hoge_repository --recurse
# or only update submodule
git submodule update --init --recursive
# for windows crlf
git submodule foreach "git config --local core.autocrlf true; git ls-files | xargs rm; git clean -xdf && git reset --hard;"
# update remote in submodules
git submodule foreach git pull origin master
# set local git user name and email for all submodules
gituname=`git config --local user.name`; gituemail=`git config --local user.email`; git submodule foreach "git config --local user.name $gituname; git config --local user.email $gituemail;"
以上是关于sh git子模块的模板命令的主要内容,如果未能解决你的问题,请参考以下文章
sh 将子模块添加到git项目
sh WordPress安装为git子模块
sh 删除git子模块但保留文件
添加具有特定标签的子模块而不是在一个命令中分支
sh bash子命令模板
使用python子进程模块处理扩展的git命令