search

Home  >  Q&A  >  body text

如何把已存在的git项目转移到Gitlab项目?

现在搭建了Gitlab了,以前git简单搭建remote server上的项目如何完整,又不影响现在开发工作的迁徙呢?

大家讲道理大家讲道理2799 days ago959

reply all(2)I'll reply

  • PHPz

    PHPz2017-04-24 09:15:52

    Projects can be imported remotely. When creating a new project, you can enter the URL address of the project in other warehouses to import.

    reply
    0
  • PHPz

    PHPz2017-04-24 09:15:52

    You are in your current project

    git remote add gitlab www.yougitlaburl.com:yourname/yourproject.git
    git push -u gitlab master
    

    This is the push.

    reply
    0
  • Cancelreply