码迷,mamicode.com
首页 > 其他好文 > 详细

git2

时间:2019-10-14 12:51:06      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:查看   代码   ranch   开发   git push   it管理   git   仓库   git分支   

1、说明

三阶段课程代码全部由git管理

2、git分支

一般git的master分支又被称之为管理员分支(/线上的代码的分支/主分支),开发者一般不去修改它

2.1 创建切换分支

git checkout -b wudaxundev

2.2 提交本地的代码到远程的分支

git add .
git commit -m '提交分支代码'
git push origin wudaxundev

2.3 查看当前的分支

git branch
  • 查看远程仓库 代码 都在wudaxundev分支

2.4 合并远程分支代码到本地

git checkout -b dev
git pull origin wudaxundev

git2

标签:查看   代码   ranch   开发   git push   it管理   git   仓库   git分支   

原文地址:https://www.cnblogs.com/hy96/p/11670751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!