美文网首页
常用Git命令

常用Git命令

作者: Gyu2233 | 来源:发表于2020-06-12 11:36 被阅读0次

create & clone

命令 作用
git init create new respository
git clone /path/to/respository clone local respository
git clone username@host:/path/to/respository clone remote respository

add&remove

git add files 把文件的修改添加到暂存区

命令 作用
git add <filename> add changes to INDEX
git add * add all changes to INDEX
git rm <filename> remove/delete

commit&synchronize

git commit 把暂存区的修改提交到当前分支,提交之后暂存区就被清空了

命令 作用
git commit -m "Commit message" commit change
git push origin mater push changes to remote respository
git remote add origin <server> connect local respository to remote respository
git push update local respository with remote changes

branches

git checkout -- files 使用暂存区的修改覆盖工作目录,用来撤销本地修改

命令 作用
git checkout -b <branch> create new branch
git checkout master switch to master branch
git branch -d <branch> delete branch
git push origin <branch> push branch to remote respository

merge

命令 作用
git merge <branch> merge changes from another branch
git diff <source_branch> <target_branch> view changes between two branches

tagging

命令 作用
git tag <tag> <commit ID> create tag
git log get commit IDs

restore

命令 作用
git checkout -- <filename> replace working copy with latest from HEAD

相关文章

  • Git 常用命令详解

    @[TOC](Git 常用命令详解) 1. Git 常用命令 1.1 常用git 命令图表汇总 1.2 配置个人信...

  • git相关教程汇总

    1. git常用命令 git常用命令总结git常用命令讲解 2. git教程相关网站 廖雪峰的git教程猴子都能懂...

  • GIT 版本管理 常用命令

    Git 常用命令流程图 Git常用操作命令: 初始化创建:$ git init //检出仓库:$ git clon...

  • git命令整理

    git常用命令 GIT常用命令备忘:http://stormzhang.com/git/2014/01/27/gi...

  • GIt 操作补充

    常用的git操作命令 常用的git操作命令已经能够满足日常的工作需求 现补充一些高级命令 git branch -...

  • Git

    常用Git命令

  • Git 日常知识

    git常用命令行命令: 1、git 中本地库常用的命令: 本地库的初始化:git init 本地库分支查询:git...

  • Git 常用命令及应用这一篇就够了(新手向)

    1. git 常用命令 1.1 常用命令 1.2 git remote 管理远程仓库 1.3 git r...

  • git操作

    Git原理 Git常用命令

  • GIT 常用命令总结

    GIT 常用命令总结 GIT 初始化命令 命令描述git init初始化本地 git 仓库git config -...

网友评论

      本文标题:常用Git命令

      本文链接:https://www.haomeiwen.com/subject/sdhgtktx.html