How to commit and push all changes, including deletes?

前端 未结 6 890
渐次进展
渐次进展 2021-02-02 15:53

How to commit and push all changes, including additions, editions, and file deletions etc in one command?

6条回答
  •  面向向阳花
    2021-02-02 16:07

    You will have to do git add -A to add all files new files, changes and removed files. Than follow that up with git commit and git push

提交回复
热议问题