本文介绍了Git提交所有文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我如何再次提交完整的项目? (我希望将我所有的文件上传到heroku)

git add。
git commit -a

不完全确定您想要什么,但要添加所有文件和提交所有更改,使用这个



How can I commit the full project again? (I want upload all of my file upload again to heroku)

解决方案
git add .
git commit -a

not completely sure what you want, but to add all files and commit all changes, use this

这篇关于Git提交所有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 21:05