1 Star 0 Fork 0

jxm/dosbox-x

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
git-update-all 448 Bytes
一键复制 编辑 原始数据 按行查看 历史
Robert de Rooy 提交于 2023-04-15 15:39 . Cleanup Bash scripts.
#!/usr/bin/env bash
# sort of like svn-update-all
curbranch=$(git branch | grep '^\*' | sed -e 's/^\* //')
if [[ "${curbranch}" == "" ]]; then
echo "Unable to determine current branch"
exit 1
fi
make clean 2>/dev/null
make distclean 2>/dev/null
./cleantree 2>/dev/null
for i in \* \*/\* \*/\*/\*; do git add "${i}" 2>/dev/null; done
git commit -a
./cleantree 2>/dev/null
git push origin "${curbranch}"
git pull origin "${curbranch}"
git fetch
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/nowaits/dosbox-x.git
[email protected]:nowaits/dosbox-x.git
nowaits
dosbox-x
dosbox-x
master

搜索帮助