如何使用 EGit 将当前 Eclipse 项目添加到 git?

发布于 2024-11-07 20:55:08 字数 52 浏览 0 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(1

别再吹冷风 2024-11-14 20:55:08

由于可以通过命令行创建Git 存储库 ,可以通过 Egit:
请遵循 Egit 教程

对于新存储库:

右键单击您的项目,选择团队 ->分享-> git。
选择建议的行并按“创建存储库”。按完成

egit 存储库创建对话框

在您的项目中使用以下内容创建文件“.gitignore”。
所有适用于此文件中描述的模式的文件/目录都将被忽略

但您也可以通过以下方式将其添加到现有的本地存储库:

  • 在本地存储库中为您的项目创建一个特殊分支(仅使用 .gitignore< /code> 文件)
  • 将其克隆到当前项目所在的位置,
  • 在其中添加所有当前项目文件,
  • 将所述 Git 存储库导入到您的工作区中:请参阅 4.2 克隆现有项目

informatik01 在评论中添加了一篇简短文章的链接,描述如何使用命令行执行此操作:
将 Eclipse 项目添加到 Git

cd ~/workspace/my-project
git init .

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:

Right click your project, select Team -> Share -> Git.
Select the proposed line and press "Create repository". Press finish

egit repo creation dialog

Create the file ".gitignore" in your project with the following content.
All files / directories which apply to the pattern described in this file will be ignored

But you can also add it to an existing local repo by:

  • making a special branch for your project in your local repo (with just the .gitignore file in it)
  • clone it where your current project is
  • add all your current project files in it
  • import said Git repo into your workspace: See 4.2 Clone existing project.

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

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