如何使用命令行在 Gitlab 中创建本地仓库和远程仓库?



我创建了一个项目。我想将我的项目存储在 Gitlab 中。如何使用命令行在 Gitlab 中创建本地仓库和远程仓库? 我正在寻找创建本地存储库和远程存储库创建。

我得到了解决方案。 使用 Gitlab 创建本地存储库和远程存储库的步骤。

  1. git init(已创建本地存储库(
  2. git add .
  3. git commit -m "message"
  4. 使用 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

使用 Gitlab 创建本地存储库和远程存储库的步骤。

  1. git init(已创建本地存储库(
  2. git add .
  3. git commit -m "message"
  4. 使用 SSH(创建远程仓库(进行 Git 推送:

    git push --set-upstream git@gitlab.example.com:namespace/nonexistent-project.git master
    

    使用 HTTP 的 Git 推送:

    git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master
    

最新更新