How to commit and push all changes, including deleting?

How to commit and push all changes, including adding, releasing and deleting files, etc. in one team?

+6
source share
4 answers

You will need to do git add -A to add all files to new files, changes and deleted files. Then follow git commit and git push

+12
source

You can try the following git commit -a

+1
source

Combine all the necessary individual commands in a single alias ?

+1
source

follow these steps: git commit -am "message" (add and commit in a single command) git push origin [branch name]

+1
source

Source: https://habr.com/ru/post/908704/


All Articles