4

大多数情况下,当我在 eclipse 中使用 git 修改受版本控制的文件时,我会执行以下 3 个步骤:

1) Add to index
2) Commit
3) Push

使用 EGit 在 Eclipse 中一步执行上述 3 个步骤时是否有可能?我知道前两个步骤可以结合起来:

http://www.vogella.com/blog/2010/12/25/git-alias-add-commit/

4

2 回答 2

4

这在新的 EGit 版本 2.1 中成为可能。在提交对话框的底部,您现在可以选中“将更改推送到上游”选项。

另见:EGit 2.1:新的和值得注意的

于 2012-10-03T20:32:23.317 回答
-1

这会将修改后的文件添加到暂存区,然后确认,这一切都在一个步骤中完成。

git commit -am "message for commit"

git add file1 file2 file3 && git commit -m "message for commit"

于 2017-01-12T17:29:14.553 回答