android GitLab使用教程

范朗
2023-12-01

1.注册gitLab账号
2.进入gitLab账号在设置中找到ssh秘钥设置,打开 Git bash Here输入命令ssh-keygen -t rsa -C "13711111111@163.com" 输入秘钥名称如:xxxwork   输入密码:xxxxxxx
3.把生成的work.pub秘钥拷贝到秘钥中,现在配置秘钥完成
6a:4c:3b:4e:0f:3a:c7:eb:41:fb:bb:86:ff:4a:ee:3b


Git 全局设置
git config --global user.name "账号"
git config --global user.email "邮箱"

创建一个新仓库
git clone git@gitlab.com:myhoujie/gitlabtest.git
cd gitlabtest
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

推送现有文件夹
cd existing_folder
git init
git remote add origin git@gitlab.com:myhoujie/gitlabtest.git
git add .
git commit -m "Initial commit"
git push -u origin master

推送现有的 Git 仓库
cd existing_repo
git remote rename origin old-origin
git remote add origin git@gitlab.com:myhoujie/gitlabtest.git
git push -u origin --all
git push -u origin --tags


git bash提交:

远程服务器地址切换命令:

git remote set-url origin 服务器url

开发分支:master

git branch -a  查看分支

git checkout master 切换分支

git拉取代码步骤:

git status

git add -A

git commit -m "提交内容说明"

git pull          

注释:git pull后一定要查看代码是否有冲突,修改后才能操作下一步。

git push origin master

(备注:解决冲突:q!以后重新git status-------如果有冲突,处理完冲突,重新来一遍以上内容在提交)

 类似资料: