Git实验室:如何在 Eclipse 中将代码推送到我的分支 Git 插件
Gitlab : How to push code into my branch in Eclipse Git Plugin
我正在使用 GitSCM 实验室。如何在 Eclipse Git 插件中将代码推送到我的分支。唯一可用的选项是 commit & push 。稍后提交和推送的任何选项。
抱歉这么说,但是管理 git 的最佳工具是命令行。 Linux 和 mac 是最好的选择。虽然他们在 windows 中有一个很好的 GUI 工具,但管理 git 的最佳方法是通过命令行。
所以顺序应该是:
git pull //update everything on your local code
git add . //To add changes
git commit -m "This is my commentary" //To commit
git push //To upload changes to server
我正在使用 GitSCM 实验室。如何在 Eclipse Git 插件中将代码推送到我的分支。唯一可用的选项是 commit & push 。稍后提交和推送的任何选项。
抱歉这么说,但是管理 git 的最佳工具是命令行。 Linux 和 mac 是最好的选择。虽然他们在 windows 中有一个很好的 GUI 工具,但管理 git 的最佳方法是通过命令行。
所以顺序应该是:
git pull //update everything on your local code
git add . //To add changes
git commit -m "This is my commentary" //To commit
git push //To upload changes to server