如何使用 EGit 将当前 Eclipse 项目添加到 git?
我的 Eclipse 中有 GAE 项目,我想将其添加到本地 git 存储库,我该怎么做?
I have GAE project in my Eclipse and I want to add it to my local git repo, how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于可以通过命令行创建Git 存储库 ,可以通过 Egit:
请遵循 Egit 教程:
对于新存储库:
但您也可以通过以下方式将其添加到现有的本地存储库:
.gitignore< /code> 文件)
informatik01 在评论中添加了一篇简短文章的链接,描述如何使用命令行执行此操作:
将 Eclipse 项目添加到 Git
Since creating a Git repo within a GAE project is possible through command line, it is possible through Egit:
Follow that Egit tutorial:
For a new repo:
But you can also add it to an existing local repo by:
.gitignore
file in it)informatik01 adds in the comment a link to a short article describing how to do it using the command line:
Adding Eclipse Project to Git