When both the disk (local file) and cache area are modified, as shown below:
Using: git commit -m 'xxx' will commit the cache area modifications, but the local modifications will not be submitted.
When using git commit -m 'xxxx' a.php, both the cache area and local modifications are submitted.
Is this the correct git principle? Ask God to explain.
You can’t submit it like this! After execution
git commit -m '提交日志'
,肯定要执行一下git push origin 分支
才能更新到对应的远程分支。git commit -m '提交日志'
It is useless to add modified files afterwardsThat's right, git commit -m 'xxx' will only submit updates to files that have been added by git to the staging area, and in batches, that is, all files in the staging area will be submitted
git commit -m 'xxx' a.php, the specified file can be submitted without git add, but only one. If you want multiple files, you must append the complete file names one by one after the command
So if I want to commit all the modified files, but there is no git add to the staging area, I will use this command git commit -am 'x'
Your understanding is correct. Finally, carrying the file parameters will directly commit the current contents of these files instead of the changes in the buffer.