git2

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

2.5 如果不小心把代码添加到了暂存区,怎么破

2.5.1 假设没有添加到暂存区,如果你只是修改了一个文件

  • ctrl + z
  • git checkout --

2.5.2 如果添加到了暂存区

  • git reset HEAD

你可能感兴趣的:(git2)