// git 私服 认证
1. ssh keys for sshgit
ssh-keygen -t rsa -C "li_jian@gozap.com"# Creates a new ssh key using the provided email
# Generating public/private rsa key pair...
Next just use code below to dump your public key and add to GitLab SSH Keys
cat ~/.ssh/id_rsa.pub
# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
2. git clone
git clone git@ip:projectname.git
3. create local branch "local-dev"
git checkout -b local-dev
4. add files
git status
git add .
git status
git commit -m 'first add project'
5. change to branch "origin/develop"
git checkout develop
6. merge
git merge origin/develop // merger origin/develop with local-dev
7. check project if is right
8. git push origin/develop
本文详细介绍了如何使用SSH密钥进行Git私服认证,并通过一系列步骤实现项目的本地克隆、分支创建、文件添加、提交、合并及推送操作,确保项目在本地与远程仓库之间的同步与管理。
1777

被折叠的 条评论
为什么被折叠?



