Home  >  Article  >  php教程  >  git 基本使用

git 基本使用

WBOY
WBOYOriginal
2016-06-06 20:08:512094browse

关于检出操作 git clone url 检出一份到本地 git status 查看当前状态 关于提交操作 git commit . -m 提交代码到仓库(其实只是提交到本地仓库,仓库在本地) git push 推送代码到远端(这个时候才是真正的推送到远端的仓库中) 关于更新操作 git fetch orgin

关于检出操作

  • git clone ‘url’ 检出一份到本地
  • git status 查看当前状态

关于提交操作

  • git commit . -m ” 提交代码到仓库(其实只是提交到本地仓库,仓库在本地)
  • git push 推送代码到远端(这个时候才是真正的推送到远端的仓库中)

关于更新操作

  • git fetch orgin master:temp 获取远端仓库修改到本地temp 区
  • git diff temp 比对修改
  • git merge temp 将修改merge到当前仓库

关于查看和切换分支

  • git branch 查看当前所在分支
  • git branch -a 查看所有分支包括本地和远端
  • git checkout branchname 切换到分支

关于库的配置

  • git config user.name ‘nic-name’
  • git config user.email ‘name@mail.com’
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn