【发布时间】:2018-08-12 17:31:44
【问题描述】:
我创建了一个项目。我想将我的项目存储在 Gitlab 中。如何使用命令行在 Gitlab 中创建本地存储库和远程存储库? 我正在寻找创建本地存储库和远程存储库的创建。
我得到了解决方案。 使用 Gitlab 创建本地仓库和远程仓库的步骤。
-
git init(已创建本地存储库) git add .git commit -m "message"- 使用 SSH 的 Git 推送(已创建远程存储库):
git push --set-upstream git@gitlab.example.com:your-username/nonexistent-project.git master
使用 HTTP 的 Git 推送:
git push --set-upstream https://gitlab.example.com/your-username/nonexistent-project.git master
【问题讨论】:
-
@PraveenP 我正在寻找同时创建本地存储库和远程存储库。上述问题仅回答有关创建远程存储库的问题。所以这不是重复的,我也得到了我的问题的解决方案,并在我的问题中也提到了。