如题,我修改了a.txt,b.txt,c.txt,怎样使用git add将三个文件一次操作全部加入暂存区
git add . or git add --all
git add a.txt b.txt c.txt ;
Separate with spaces, no commas. Try it
git add . or git add --all
git add a.txt b.txt c.txt ;
Separate with spaces, no commas. Try it