1、生成 SSH 秘钥对
ssh-keygen -b 4096 -C 'xx@xx.com'(你的邮箱)
2、查看ssh目录下的公钥和私钥(id_rsa为私钥,id_rsa.pub为公钥)
ls ~/.ssh/
id_rsa id_rsa.pub
3、获取公钥复制到 GitLab / GitHub / Gitea 的 SSH 管理中
cat ~/.ssh/id_rsa.pub
4、将git管理库的代码克隆下来(第一次需要clone操作以后直接pull就行)
git clone ssh://git@gitea.xx/xx.git(代码目录地址这里用的是Gitea如果你是用GitLab / GitHub请自行修改)
5、查看状态
git status
6、查看修改
git diff
7、添加代码
git add .
8、提交代码并命名
git commit -m 'title'(这里的title指的是给你此次操作命名。比如:git commit -m '修改了查询语句')
9、将代码推到服务器
git push
10、从服务器上拉取你推上来的代码
git pull
这就是我在工作中经常用到的git的基本操作希望对你有用。
笔者水平有限,还会继续努力,请多多指教。