git commit -a
自动暂存所有修改过的文件:
-a
--all
Tell the command to automatically stage files that have been modified
and deleted, but new files you have not told git about are not affected.
相当于-a
什么git add
?
git commit -a
自动暂存所有修改过的文件:
-a
--all
Tell the command to automatically stage files that have been modified
and deleted, but new files you have not told git about are not affected.
相当于-a
什么git add
?