我有Intellij IDEA 12.0.1 我正在使用内置Git插件。我能够创建本地存储库。现在我想将我的源代码上传到远程存储库。我可以使用Intellij IDEA插件吗?
谢谢。
答案 0 :(得分:54)
您无法使用IntelliJ IDEA插件将本地Git存储库上传到远程。为此,您需要使用Git Bash或Git客户端,例如Source Tree。
VCS -> Import into Version Control -> Create Git Repository
master
'D:\projects\TestProject'
git remote add origin http//IP/path/to/repository
git push origin master
Synchronize 'TestProject'
Git -> Repository -> Branches -> origin/master -> Checkout as new local branch
File -> Open
中导航到项目文件夹,例如cd 'D:\projects\TestProject'
Repository -> Add Remote
中,您应该看到存储库设置窗口
Synchronize 'TestProject'
Git -> Repository -> Branches -> origin/master -> Checkout as new local branch
现在,您应该可以使用 IntelliJ IDEA 插件执行拉/推。
答案 1 :(得分:7)
有可能在Intellij IDEA中 您应该通过下面的命令在git bash中为本地存储库添加一个远程存储库。
git remote add origin YOUR_REMOTE_REPOSITORY_ADDRESS.
for example
git remote add origin https://gitlab.com/my_account/my_repository.git
在Intellij IDEA中,如果要对存储库使用ctrl + k
进行任何更改,它将显示如下图所示的窗口。在此窗口中,您可以选择commit and push
,以便它将提交并将更改推送到本地和远程存储库
此外,如果您只想推送到远程存储库,请使用ctrl + shift + k
来推送更改
我希望这个答案可以帮助你。
答案 2 :(得分:2)
我有同样的问题,我相信IDEA 12的情况仍然如此,除非我弄错了:
使用命令行的另一种方法是SourceTree(可用于Mac& Win)来管理遥控器或完全管理Git / Hg存储库。它是Atlassian的免费GUI客户端(没有关联公开)。
您可以下载here。