标签: bash github
我正在使用curl -s -o file.sh https://raw.githubusercontent.com/USER/REPO/master/file.sh更新脚本文件。但是,上述命令在推送后不会立即获得最新的提交。这样做需要一段时间。
curl -s -o file.sh https://raw.githubusercontent.com/USER/REPO/master/file.sh
是应该的,还是我做错了?
答案 0 :(得分:3)
我不确定您的用例,但是总是最好使用git pull获得最新的更改。 Github可能会做一些整理工作,然后才能在“原始” URL上提供新的更改。