1 Star 0 Fork 1

chisuhua/NyuziToolchain

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
merge-upstream.sh 735 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jeff Bush 提交于 2018-02-19 20:27 . Issue #88: Add compiler-rt project
#!/bin/bash
git checkout upstream
rm -rf .clang-tidy .clang-format .arcconfig *
BASE_URL=http://llvm.org/svn/llvm-project
SVNREV="$(svn info --show-item=revision $BASE_URL)"
svn co $BASE_URL/llvm/trunk@$SVNREV .
svn co $BASE_URL/cfe/trunk@$SVNREV tools/clang
svn co $BASE_URL/lldb/trunk@$SVNREV tools/lldb
svn co $BASE_URL/lld/trunk@$SVNREV tools/lld
svn co $BASE_URL/compiler-rt/trunk@$SVNREV runtimes/compiler-rt
find . -type d -name .svn -exec rm -rf {} \;
find . -type f -name .gitignore -delete
git add --all .
git commit -a -m "Pull latest code from upstream llvm, lld, lldb, cfe, compiler-rt @$SVNREV"
git checkout master
git merge upstream --no-commit --no-ff
# Show list of conflicts
git diff --name-only --diff-filter=U
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chisuhua/NyuziToolchain.git
[email protected]:chisuhua/NyuziToolchain.git
chisuhua
NyuziToolchain
NyuziToolchain
master

搜索帮助