GitLab+sourceTree版本管理
如果把代码提交到github上,只能是公开的,除非你花钱了,但是我不想花钱,所以我选择了gitLab作为git服务器,使用gitLab的具体步骤如下:
1.申请一个gitLab账号https://gitlab.com
2.然后登录进去,新建工程,点击小狼头;
3.使用gitLab和使用其他客户端一样,需要建立一个上传RSA公钥,打开终端输入:ssh-keygen,此时生成了一对公钥和私钥,
终端命令如下:
《1》appledeMacBook-Air:~ wsy$ ssh-keygen
一路回车,生产RSA公钥和私钥
《2》appledeMacBook-Air:~ wsy$ cat .ssh/id_rsa.pub
打开公钥,复制到gitLab上
4.添加公钥
点击ADD SSH Key,把刚才生成的公钥添加进去,OK
5.复制工程路径进行clone,比如 [email protected]:wangsuyan/ReadNameList.git
6.在终端输入, git clone [email protected]:wangsuyan/ReadNameList.git
我选择的是直接克隆到桌面
7.新建一个工程,把工程建到刚才克隆的项目下
8.在App Store上下载一个Soure Tree作为git客户端;
9.下载好Soure Tree后,直接把克隆的项目拖入到 Soure Tree中;
10.好了,一切OK,
11.接下来就是 Soure Tree 的使用了,具体使用和其他的 git客户端类似
12.提交久可以了。
时间: 2024-11-07 12:59:46