注册:
1、git config --global user.name
2、git config --global user.email
3、ssh-keygen -t rsa-C "邮箱"
4、Git验证key
1.设置git的user name和email:
git config --global user.name "wangxinchao"
git config --global user.email "[email protected]"
2.生存密钥:
ssh-keygen -t rsa -C “[email protected]”
按3个回车,密码为空
解决冲突:
1、提交
2、打开文件夹
3、Bash-->git remote update-->git pull orgion developv1.0
4、如果有冲突,显示(!merging)
右键TortoiseGit-->resolve
创建分支:
git checkout -b 分支名
删除新建的分支:
git branch -b 分支名
拉取:
git pull origin developv1.0
更新:
git push origin developv1.0
git pull
http://www.bootcss.com/p/git-guide/
时间: 2024-11-05 11:32:16