gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 14:41:54 24 4
gpt4 key购买 nike

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

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

  1. git init(创建本地仓库)
  2. git add .
  3. git commit -m "消息"
  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 "消息"
  4. 使用 SSH 进行 Git 推送(创建远程存储库):

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

    使用 HTTP 推送:

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

关于git - 如何使用命令行在Gitlab中创建本地仓库和远程仓库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51811227/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com