我不小心提交了一个包含绘图的文件夹。由于这个错误,shell 变慢了,我想排除该文件夹以供将来提交,而不会丢失代码文件 (R) 中所做的更改。任何想法如何做到这一点?
问问题
17 次
1 回答
1
假设您的绘图文件夹名称是plots
. 您可以从 git 中删除图
git rm --cached -r plots
然后将您的 plots 文件夹添加到.gitignore
如果您不想再次错误地提交它
echo plots/ >> .gitignore
git add .gitignore
然后你可以amend
提交(编辑提交)。
# --no-edit prevents git from asking you to prompt the commit title again
git commit --amend --no-edit
于 2021-11-19T14:42:07.573 回答