美文网首页
GitLab建立并上传项目并使用sourcetree关联

GitLab建立并上传项目并使用sourcetree关联

作者: GemShi | 来源:发表于2019-02-15 18:17 被阅读6次

现在使用GitLab管理项目,简单整理了相关操作。

GitLab

1.创建组
因为是公司的项目,所以选择私有

create group
2.创建项目
create project
3.在终端进行相应配置
创建项目完成后,根据说明步骤进行
instructions
进行到Existing Git repository - git push -u origin --all这一步,如果终端出现如下提示,就将git remote add origin git@git.XXX.com:yourgroup/yourproject.git命令重新输入一遍,在project页面将其复制即可
copy ssh
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

出现如下图文字,就是上传成功了

success
4.生成sshkey
(1)终端输入ssh-keygen -t rsa -C "你GitLab的email"
(2)连输入三次回车
(3)生成了公钥和私钥
(4)可以到已给的路径中查看,名称为id_rsa.pub、id_rsa
(5)查看生成的公钥内容,在终端输入cat ~/.ssh/id_rsa.pub,将返回结果全部复制
(6)进入GitLab中Account中的Settings,选择SSH Keys,将公钥复制进文本框,Add key create sshkey
Source tree

1.选择从URL克隆,SVN上叫check out,Git上叫克隆

clone from URL
2.添加路径
源URL:选择项目下的http
目标路径:点选右侧...,一般不选择默认路径,先按照对话框操作确认账号密码,然后在桌面或者你习惯的位置新建空文件夹,将新建的空文件夹设置为目标路径
名称:不用更改
set URL
3.进入界面
操作你想操作的即可。

sourcetree为代码提交提供了方便,如果不想用sourcetree,可以用终端

进入工程目录:cd $project_root
初始化git仓库:git init
添加文件到git仓库:git add .
提交代码到git仓库:git commit -m 'init commit'
进行链接:git server git remote add origin git@example.com:namespace/projectname.git
push代码到服务器:git push origin master

相关文章

网友评论

      本文标题:GitLab建立并上传项目并使用sourcetree关联

      本文链接:https://www.haomeiwen.com/subject/xzjmeqtx.html