我在Eclipse中有一个与Gitlab中的旧存储库相关联的项目。正在使用的分支称为Test。
我在Gitlab中创建了一个新的存储库(它只包含README.md文件)。它只有一个分支:master。
我需要更改Eclipse项目,使其不再引用旧存储库(和旧分支),而是引用新存储库(使用主分支)。
如何做到这一点?
TIA
更新
@Rizwan - 感谢您的信息。我做了以下事情:
cd to the directory with the code
#initialize the repository
git init
#add reference to the repository I needed
git remote add origin "git@myrepo.com:WORK/<my-repository>.git"
#got what was currently in the repository
git pull origin master
#added code (not in the repository)
git add -A
#commit the code
git commit -m "first commit with code"
#sent it up
git push origin master
还有另一条消息我用作基础(但我现在无法找到)
TIA
答案 0 :(得分:2)
我们可以在Eclipse本身中直接执行此操作。
Goto - CurrentProject(Right Click) -> Team -> Remote -> Configure push to upstream -> Change(URI)
答案 1 :(得分:1)
这可能会有所帮助
cd/path/to/repo
git remote -v
git remote set-url origin
gitlab@gitlab.mydomain:root/testproject.git
刷新/清理构建Eclipse项目