我应该如何将我的intelliJ项目添加到现有的Github存储库中?

时间:2016-11-22 12:21:08

标签: java github intellij-idea

我已经有了一个Github存储库,但是我需要将我的实际项目添加到存储库中。我应该如何使用IntelliJ?该项目当然应该版本化。

4 个答案:

答案 0 :(得分:3)

IntelliJ将自动发现并添加"您的git存储库在项目根目录中找到.git目录后立即生成。您必须运行的步骤取决于您是否已经为项目初始化了Git存储库。如果没有,首先打开一个终端(例如,通过按ALT + F12打开IntelliJ中的终端窗口)并运行

git init

之后(或者如果你的项目中已经有一个git存储库),你可以" connect"这个存储库到Github上的项目

git remote add origin GIT_URL_ON_GITHUB

然后,IntelliJ将会发现"你的存储库并提供git支持。

答案 1 :(得分:1)

您可以使用以下步骤将项目的本地目录初始化为Git存储库:https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/

然后,如果您有IntelliJ的Git插件,请转到版本控制,提交更改,然后您可以推送。

答案 2 :(得分:1)

我不知道您对IDEA热键有多熟悉,因此使用顶部导航栏的说明:VCS -> Enable Version Control Integration -> Select your version control system (Git in your case) -> Wait for IDEA to update project -> Your project hierarchy now shows all files in brown color -> Select the files you want to commit -> Right click and select Git-Add -> In the bottom navigation bar you should also see "9: Version Control" -> Click on this button -> The window with uncommited changes appears and recently added files are green-colored -> Select the files you want to commit -> Right click on the files -> Select "Commit Changes" from the popup menu -> Specify commit message -> Hover over the "Commit" button -> Press "Commit and Push" -> In the dialog you can specify the master branch of your origin repo on Github -> Press Push after that -> You're done

随意问我是否错过了什么。进行。

答案 3 :(得分:0)

VCS-> Git->遥控器... this is how it looks like