赞
踩
创建 git 仓库:
- git init
- git add .
- git commit -m "first commit"
- git remote add origin https://gitee.com/*********/******.git
- git push -u origin master
已有仓库
- cd existing_git_repo
- git remote add origin https://gitee.com/*********/******.git
- git push -u origin master
git branch cj 创建cj分支
git branch 查看所有分支
git checkout cj 切换至cj分支
git add . 修改后,提交到暂存区
git commit -m 说明
git push origin cj 推送到cj分支
注意: 第一步你得把当前分支合到远程分支去才能有下面的操作
另外我是将cj分支代码合并到master分支去
1.推完代码到远程仓库查看本地分支(如果推错分支代码那么请将分支切到刚刚推送上去代码的分支在来进行下面的操作)
git branch
2.切换分支到master分支
git checkout master
3.合并分支(当前分支是master,也就是吧cj的代码合到master分支)
git merge cj
4…推送代码到master分支
git push origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。