git常用命令

  1. 创建新的本地分支
git checkout -b newB
  1. 在本地分支开发以后,查看操作过的文件
git status
  1. 添加这些文件到暂存区
git add .
  1. 暂存区的代码提交到本地仓库
git commit -m '这里是描述信息'
  1. 切换分支
git checkout master
  1. 合并newB分支上的代码
git merge newB
  1. 将newB提交到远程仓库 【第一次要用-u 以后不需要】
git push -u origin newB
posted @ 2021-12-27 15:47  王猪猴  阅读(22)  评论(0编辑  收藏  举报