仅使用Git卸载新文件
这个问题在这里已经有了答案:
有一种方法可以做到这一点,即暂停/重置所有内容,然后只重新设定你想要的内容:
git reset HEAD ./
git add -u
# -u stages changes to tracked files, and will not stage new files.
链接地址: http://www.djcxy.com/p/6163.html
这个问题在这里已经有了答案:
有一种方法可以做到这一点,即暂停/重置所有内容,然后只重新设定你想要的内容:
git reset HEAD ./
git add -u
# -u stages changes to tracked files, and will not stage new files.
链接地址: http://www.djcxy.com/p/6163.html