从本地文件夹创建一个新的git repo

时间:2019-05-15 13:40:21

标签: github gitlab

我的笔记本电脑上有一个目录,该目录不为空。我想将其保存到新仓库中的GitLab云中,该如何做?

2 个答案:

答案 0 :(得分:0)

在Gitlab上创建仓库,在PC上克隆该仓库,将项目复制到该克隆仓库。 提交->推送。

答案 1 :(得分:0)

按照https://docs.gitlab.com/ee/gitlab-basics/create-project.html#push-to-create-a-new-project

推送项目以创建一个新项目
  

这可以通过使用SSH或HTTPS来完成:

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

## Git push using HTTPS
git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master`
     

成功完成推送后,将显示一条远程消息   用于设置新项目的遥控器和URL的命令:

remote: remote: The private project namespace/nonexistent-project was created. 
remote: 
remote: To configure the remote, run: 
remote:   git remote add origin https://gitlab.example.com/namespace/nonexistent-project.git remote:
remote: To view the project, visit: 
remote:   https://gitlab.example.com/namespace/nonexistent-project 
remote: