《Git常用命令.pptVIP

  • 0
  • 0
  • 约7.86千字
  • 约 39页
  • 2016-12-31 发布于北京
  • 举报
Git的基本使用 Benn 2011-06-09 Agenda Git简单介绍 常用的21个命令介绍 Git web界面 举例1 举例2 Git简单介绍 Git是一个开源的分布式版本控制系统,类似于svn, cvs, 等 大部分开源软件已经使用git管理代码,包括Linux kernel, Perl, Eclipse, Gnome, KDE, QT, Android, Xorg等等 官方网站是 略。。。 Git常用命令(0) 分为4类 Local Commands config, init, add, status, commit, log, show, tag Remotey Commands clone, remote, pull, fetch, push Branchy Commands checkout, branch, merge, rebase, Patchy Commands diff, apply, format-patch, am Git简单介绍(1) Git config - 获取和设置git选项 绝大部分情况我们只会用到 $git config --global “Benn Huang” $git config --global user.email benn@ $git config –list $git help config Git简单介绍(2) Git init – 创建git仓库 简单用法 – 初始化一个git仓库 $cd /path/to/my/codebase $git init ----- 在codebase下创建一个.git目录 $git add . -----把所有文件加入index表中 Git简单介绍(3) Git add - 把文件添加到index表中 常用的: $git add . $git add file1 file2 Git简单介绍(4) Git status – 查看当前工作目录的状态 当前工作目录与HEAD的比较 $git status Git简单介绍(5) Git commit – 修改提交到本地仓库 常用命令 $git commit -m “msg” hello.c foo.c $git commit --file=- EOF hello.c foo.c $git commit -a 问题:unstaged的文件在git commit -a时是否会被提交?什么是unstaged文件? Git简单介绍(6) Git log - 显示提交的日志 $git log master --查看当前master分支的log $git log remote/korg/master --查看远程分支的log $ git log --since=2 weeks ago“ $git log --name-status release..test Git简单介绍(7) Git show - 显示各种对象的信息(可以是branch, commit id, tag等) $git show v1.0.0 $git show v1.0.0^{tree} $git show -s --format=%s v1.0.0^{commit} $git show master~10:Documentation/README Git简单介绍(8) Git tag - 创建、删除和枚举标签 常用的: $git tag $git tag -a -m “msg” v1.0 d8e2e0e $git tag v1.0 $git tag -d v1.0 Git简单介绍(9) Git clone 常用的 $git clone git://1/repo.git $git clone git://1/manifest.git 后面可以跟目录 Git简单介绍(10) Git remote - 用于管理远程仓库 常用的 $git remote -v $git remote add center ssh://benn@1/git_repo/linux-2.6.36.git $git remote rm center $git remote show center Git简单介绍(11) Git pull - 等价于fetch + merge 格式: git pull?[options] [repository [refspec…]] refspec格式: +src:dst 举例:把远程仓库center中的master分支和本地work分支合并 $git pull center +master:work Git简单介绍(12) Git fetch

文档评论(0)

1亿VIP精品文档

相关文档