各位好,本人想用一个简单的shell script
来让某目录下的多个submodule,并在其中执行git checkout (commit SHA)
及 git restore .
目前想到的大概是这样,才后会用多个if来找我要的submodule:
for item in /path/to/submodule/*;do
if [${item} == 'name'];then
git restore .
git checkout (commit SHA)
fi
done
然而 if[${item} == 'name'] 这不要怎么写才对
我希望name对应到的是路径最右边的item
先谢谢各位看完问题了,因为很少写shell所不太会问,不清楚的地方我会再补充