生成ssh-key
$ ssh-keygen -t rsa -C "youremail@example.com"
设置用户名和邮箱
$ git config --global user.name yourname
$ git config --global user.email youremail@example.com
推送本地分支到远程仓库
git push
如果远程分支不存在
git push --set-upstream origin [branch_name]
本地项目添加多个远程仓库
第一种方式:
1. 添加一个远程库 名字不能是origin git remote add 17MOX http://git.17byh.com/17MOX/mxhy.git
image2. 查看远程库及地址 git remote -v
image3. 拉,推
git pull 17MOX 远程分支名:本地分支名
git push 17MOx 本地分支名:远程分支名
第二种方式:(好处时,推送时,可以同时推送到另外一个库)
1. 添加另外一个远程库
git remote set-url --add origin git@gitlab.com:mzc/DIVIDE_PKG.git
image2. 推送
git remote -v
git push origin master:master
网友评论