git远程写协作同步

Posted azzy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git远程写协作同步相关的知识,希望对你有一定的参考价值。

1:创建一个要提交的文件
2 git init 初始化 
3 git remote add origin https://github.com/maohongli/cang.git 建立远程连接
4 git status
5 git add -A 创建
6 git commit -m "是" 
7 git push -u origin master 推送

用户名git config --global user.email 1031815407@qq.com 密码 git config --global user.name "maohongli"

分支合并


1 git checkout -b shop 切换分支
2 git add -A 创建 
3 git push -u origin shop 推进
4 git checkout master 切换master
5 git merge shop 合并shop分支
6 git push 推进

以上是关于git远程写协作同步的主要内容,如果未能解决你的问题,请参考以下文章

推送提交(git push)

git-远程协作

多人协作的git

Git 多人协作开发

Git协作

git 多人协作