Git常用命令

  • 新建分支
    #创建分支
    git branch [name]
    #切换分支
    git checkout [name]
    #添加到暂存
    git add .
    #提交到本地
    git commit -m ‘message‘
  • 提交分支到github
    #提交分支到远程仓库
    git push origin branch:branch
    #Github审核过后,更新master
    git pull