git合并远程分支

git fetch origin                                                   同步远程服务器数据

git branch -a                                                     查看远程分支名字

git branch <要提交仓库的名字>                        创建跟远程一样的仓库名

git checkout  要提交仓库地址                            转换成远程仓库

git merge 自己创建分支                                     合并自己修改的分支

git pull origin 远程分支名

你可能感兴趣的:(乱七八糟,git,github)