如何使用 git gui 提交许多新文件而不单击每个文件?

发布于 2024-08-28 06:40:02 字数 77 浏览 11 评论 0 原文

我有大量新文件要提交。在 git gui (Windows) 中点击每一个来登台是很烦人的。

我怎样才能一次提交一大堆文件?

I have a ton of new files to commit. Clicking each one in git gui (Windows) to stage is annoying.

How can I can I commit a whole bunch of files at once?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

早茶月光 2024-09-04 06:40:02

@Sam Saffron 给类似的问题说明

选择项目(选择顶部一项,按 Shift 键,选择底部一项)并按 CTRL T

或者去提交->提交阶段

A nice answer from @Sam Saffron to a similar question states

Select the items (select top one, hit shift, select bottom one) and hit CTRL T

Or go to commit -> stage to commit

故事与诗 2024-09-04 06:40:02

不要使用 gui ^^ ... git add . 会将所有新文件添加到索引中。

Don't use the gui ^^ ... a git add . will add all new files to the index.

甜妞爱困 2024-09-04 06:40:02

我认为,如果您突出显示所有文件并输入 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.

双马尾 2024-09-04 06:40:02

您可以查看不同 GUI 的 GIT 扩展 - 我发现这很容易使用。

You could have a look at GIT Extensions for a different GUI - I find it pretty easy to use.

围归者 2024-09-04 06:40:02

假设您安装了 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

伏妖词 2024-09-04 06:40:02

在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文