rm mv 与 git rm git mv
2020-10-30 本文已影响0人
yuerxiaoshui
1. git rm
git checkout master
git rm filename
git commit -m "commit info"
git push origin master
2. 不小心使用了 rm
rm file1
git add file1
git commit -m "delete file1"
git push -u repoName master
3. mv 与 git mv
git mv = git add + git rm
如果用 mv 的话,还要单独的使用 git add newfile 和 git rm oldfile,很麻烦