📜  如何刷新 github 上的缓存 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:38.754000             🧑  作者: Mango

代码示例1
git rm -r --cached . 
git add . //add the changes
git commit -m "changes" //commit changes and push
git push origin master|main