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

Gob*_*ind 7 git 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
Run Code Online (Sandbox Code Playgroud)

Gob*_*ind 11

使用 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
    
    Run Code Online (Sandbox Code Playgroud)

    使用 HTTP 进行 Git 推送:

    git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master
    
    Run Code Online (Sandbox Code Playgroud)