git学习使用小记
@(Alu)
打开git命令行:
输入:
git rm -r --cached .
清除git的本地版本库缓存
再输入:
git add .
git commit -m 'update .gitignore'
将你的 .gitignore
文件提交.
问题解决~。
@(Alu)
打开git命令行:
输入:
git rm -r --cached .
清除git的本地版本库缓存
再输入:
git add .
git commit -m 'update .gitignore'
将你的 .gitignore
文件提交.
问题解决~。