Ubuntu Gitlab 备份代码服务器

Posted 慢伴拍的二叉树

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu Gitlab 备份代码服务器相关的知识,希望对你有一定的参考价值。

公司的版本控制软件是Git ,一般由自己邮箱或者用户名 注册 了Gitlab 之后,自己新建一个Project :

点击project 可以考到自己的 project 连接:

接下来需要 将自己的ssh 添加到自己的git 账号:

以Ubuntu 为例 :

 

查看自己虚拟机是否生成了 ssh key:

ls -al ~/.ssh


如果没有,执行以下生成ssh key :

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"


添加到虚拟机的代理:

eval $(ssh-agent -s)

ssh-add ~/.ssh/id_rsa

 

拷贝 公钥到 git 账号:

gedit ~/.ssh/id_rsa.pub

 

 

 虚拟机 创建仓库:

 

 

mkdir test
cd test
git init
git remote add origin git@gitlab.yzs.io:hongzhunzhun/test.git

 

touch hong

cat "xxxx" > hong

 

 

git add .
git commit -m "xxxxx"


查看当前分支
git branch

 

 

切换分支
git branch test
git checkout test

 

 

上传分支
git push origin test

 

 下载同步分支

 git pull origin test

 

 

 参考链接:

github help:

https://help.github.com/

 

http://www.111cn.net/sys/linux/118352.htm

 

 

 










 

以上是关于Ubuntu Gitlab 备份代码服务器的主要内容,如果未能解决你的问题,请参考以下文章

gitlab安装,使用,备份,恢复

Gitlab---代码库备份的迁移与数据恢复

Ubuntu搭建Gitlab服务器

Ubuntu零基础教学-Ubuntu20.04安装Git及使用,并上传代码至gitlab服务器 | 超级详细,建议收藏!

Ubuntu零基础教学-Ubuntu20.04安装Git及使用,并上传代码至gitlab服务器 | 超级详细,建议收藏!

gitlab 搭建 备份 升级 迁移恢复