I have just created a GIT on a folder. I now want to add the contents of that folder by "staging" all the files. In the GUI, is there a way to select all the files. I have well over 4000 files and clicking one at a time is proving to be a bit of a pain.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Yes,
Select the items (select top one hit shift, select bottom one) and hit CTRL T
Or go to commit -> stage to commit
回答2:
git add *
or just
git commit -a -m "your message"
Don't mess around with the GUI.