如何使用 git gui 提交许多新文件而不单击每个文件?
我有大量新文件要提交。在 git gui (Windows) 中点击每一个来登台是很烦人的。
我怎样才能一次提交一大堆文件?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有大量新文件要提交。在 git gui (Windows) 中点击每一个来登台是很烦人的。
我怎样才能一次提交一大堆文件?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
@Sam Saffron 给类似的问题说明
A nice answer from @Sam Saffron to a similar question states
不要使用 gui ^^ ...
git add .
会将所有新文件添加到索引中。Don't use the gui ^^ ... a
git add .
will add all new files to the index.我认为,如果您突出显示所有文件并输入 ctrl+t,那么您应该暂存所有选定的文件,尽管我发现通常会由于某种未知原因而留下一个文件。
I think if you high light them all and type ctrl+t, then you should stage all the selected files, although I find one normally gets left over for some unknown reason.
您可以查看不同 GUI 的 GIT 扩展 - 我发现这很容易使用。
You could have a look at GIT Extensions for a different GUI - I find it pretty easy to use.
假设您安装了 cygwin,您可以输入
git commit -m 'whatever'
将更改添加到暂存区域后。要进行批量添加,请执行以下操作:git add 。
当然,这是在命令提示符下完成的
assuming you have cygwin installed, you can type
git commit -m 'whatever'
after you have added the changes to the staging area. To do a mass add do the following:git add .
this is, of course, done in the command prompt
在 Git Gui 中,您可以使用菜单选项一次性暂存所有文件:
commit
>阶段更改要提交的文件
或快捷方式ctrl + i
In Git Gui, You can stage all files at once with menu option:
commit
>Stage changed files to commit
or shortcut ctrl + i