A git cheatshell based on the book: http://www.git-scm.com/book/en/v2.

Repository Configuration

git init - initialize an empty repository

git clone https://github.com/libgit2/libgit2 - clone the remote repository to a local target named libgit2

git clone https://github.com/libgit2/libgit2 mylibgit - clone the remote repository to a local target named mylibgit

/etc/gitconfig: contains values for every user on the system and all their repositories. git config --system will read and write from this file

~/.gitconfig: specific to your user. git config --global will read and write from this file

.git/config: specific repository configuration

git config --global user.name "Jonathan Lim" - set global user to "Jonathan Lim"

git config --global user.email jonathanlim@example.com

git config --global core.editor emacs - set your default editor

Track Changes

git status - to view current status of your working directory

git add README -  add the file README to staging area

git commit - commit changes in staging area. In this case, a text editor will pop up to input commit comments

git commit -m "commit message" - commit with commit message

git commit -a -m "commit message" - makes Git automatically stage every file that is already tracked before doing the commit

git commit --amend - Amend the last commit, e.g. commit more files/modify the commit message

git rm - remove the file from the working directory and from the index. If the file is modified already and added to the index. Use git rm -f to force the removal

git rm --cached - keep the file in the working directory but remove it from the index

git mv file_from file_to - rename a file in Git

git log - list all the commits made in that repository

git log -p -2 - shows difference introduced in each commit. -2 limits the output to only the last two commits

git log --pretty="format string" - format the log

git log -Sfunction_name - Find the last commit that add/remove a reference to a specific function

git diff - to see what you've changed but not yet staged

git diff --staged -  to see what you've staged that will go into your next commit

git diff --cached - just like git diff --staged

git checkout -- [file] - discard all the changes on the file since last commit

Working with Remote

git remote - show remote repository name

git remote -v - show remote repository name and URL

git remote add [short name] [url] - Add a new remote Git repository as a shortname

git fetch [short name] - pull down all the data from that remote project. After doing this, should have references to all the branches from the remote. Note that, git fetch just pulls the data to the local repository - it doesn't do the merge automatically.

git push [short name] [branch name] - push local branch to remote server

git remote show [short name] - see more information about a particular remote

git remote rename [old short name] [new short name] - change a remote's shortname

git remote rm [short name]

Tagging

Typically people use this functionality to mark release points (v1.0, and so on)

  • Lightweight tag: like a branch that doesn't change (it's just a pointer to a specific commit)
  • Annotated tag: stored as full objects in the Git database

git tag - list the available tags

git tag -l [pattern] - search for tags with a particular pattern

git show [tag] - show tag data along withe the commit that was tagged

git tag -a [tag] -m [message] - create a annotated tag

Branching

Tracking branch/upstream branch - local branches that have a direct relationship to a remote branch.When you clone a repository, it generally automatically creates a  master branch that tracks  origin/master

git branch [branch name] - create a new branch

git branch -v - show last commit on each branch

git branch --merged|--no-merged - show which branches are already merged/not merged into the current branch

git branch -d [branch] - delete a branch

git branch -u [remote branch, e.g.origin/hotfix] -

git log --oneline --decorate - show where the HEAD pointer is point

git log --online --decorate --graph --all - show the history of the commits, showing where the branch pointers are and how history has diverged

git checkout [branch name] - switch to an existing branch

git checkout -b [new branch name] - create a new branch and switch to the new one

git checkout -b [branch] [remote branch, e.g. origin/hotfix] - create a local branch that mapping to the remote branch

git merge [branch] - merge the target branch into current branch

git push [short name, e.g. origin] [local branch]:[branch on the remote] - push local branch to the branch on the remote project

git branch -vv - show what tracking branches you have set up

git rebase [branch] - take the patch of the changes that was introduced in C4 and reapply it on top of C3.

git rebase [base branch] [topic branch] - check out the topic branch and replay it onto the base branch

Git Cheatshell - Pro Git的更多相关文章

  1. Pro Git 第一章 起步 读书笔记

    Pro Git 笔记 第1章 起步 1.文件的三种状态. 已提交:文件已经保存在本地数据库中了.(commit) 已修改:修改了某个文件,但还没有提交保存.(vim) 已暂存:已经把已修改的文件放在下 ...

  2. 《Pro Git》阅读随想

    之前做版本管理,我使用最多的是SVN,而且也只是在用一些最常用的操作.最近公司里很多项目都开始上Git,借这个机会,我计划好好学习一下Git的操作和原理,以及蕴含在其中的设计思想.同事推荐了一本< ...

  3. Pro Git(中文版)

    Pro Git(中文版) 返回 Git @ OSC 目录 1.起步 1.1 关于版本控制 1.2 Git 简史 1.3 Git 基础 1.4 安装 Git 1.5 初次运行 Git 前的配置 1.6 ...

  4. 《Pro Git》笔记3:分支基本操作

    <Pro Git>笔记3:Git分支基本操作 分支使多线开发和合并非常容易.Git的分支就是一个指向提交对象的可变指针,极其轻量.Git的默认分支为master. 1.Git数据存储结构和 ...

  5. 【Tools】Pro Git 一二章读书笔记

    记得知乎以前有个问题说:如果用一天的时间学习一门技能,选什么好?里面有个说学会Git是个很不错选择,今天就抽时间感受下Git的魅力吧.   Pro Git (Scott Chacon) 读书笔记:   ...

  6. Pro Git CN Plus

    Git — The stupid content tracker, 傻瓜内容跟踪器.Linus 是这样给我们介绍 Git 的. Git 是用于 Linux 内核开发的版本控制工具.与常用的版本控制工具 ...

  7. 《Pro git》

    可以通过阅读 CODING 工程师参与翻译的 <Pro Git> 进一步掌握 Git 版本控制系统. https://git-scm.com/book/zh/v2

  8. 《Pro Git》轻松学习版本控制

    转自 https://kindlefere.com/post/333.html 什么是“版本控制”?我为什么要关心它呢?版本控制是一种记录一个或若干文件内容变化,以便将来查阅特定版本修订情况的系统.在 ...

  9. [Git00] Pro Git 一二章读书笔记

    记得知乎以前有个问题说:如果用一天的时间学习一门技能,选什么好?里面有个说学会Git是个很不错选择,今天就抽时间感受下Git的魅力吧.   Pro Git (Scott Chacon) 读书笔记:   ...

随机推荐

  1. System.IO.IOException: The handle is invalid.

    System.IO.IOException: The handle is invalid. 00022846 11:39:49.098 AM [892] 00022847 11:39:49.098 A ...

  2. isee图片专家批量处理图片大小教程

    经常用手机.照相机外出拍照片,然后再弄到电脑上面很占硬盘空间了,isee图片专家是一款非常专业的批量压缩图片大小工具,方便储存,给电脑减压,具有一次自动处理N张图片:程序小巧,资源占用低,处理速度快等 ...

  3. 如何更换vim-airline的theme

    仓库位置: 点我直达 (主题以前是和airline在同个仓库的,现在独立出来了) 这些内置的这些主题,可以直接使用,方法是在 “.vimrc”文件中写 let g:airline_theme=&quo ...

  4. April 5 2017 Week 14 Wednesday

    Today is a perfect day to start living your dream. 实现梦想,莫如当下. Miracles may happen every day. If you ...

  5. CopyTranslator-复制即翻译的外文辅助阅读翻译解决方案

    英语/English 复制即翻译的外文辅助阅读翻译解决方案 请尽快更新到,这是你没有体验过的全新版本,只需3分钟,你就会跟我一样,爱上这个软件. 如果您觉得软件对您有所帮助,不用follow,不用fo ...

  6. HTML入门2—HTML常用标签

    HTML常用标签练习 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> &l ...

  7. hdu-2688 Rotate---树状数组+模拟

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2688 题目大意: 给你n数,(n<=3e6),有两个操作,Q为 当前有多少对数,满足严格递增, ...

  8. python 爬poj.org的题目

    主要是正则表达式不熟练,基础知识不扎实,函数也不怎么会用,下次再深入了解这3个函数吧. 主要是一个翻页的功能,其实,就是通过一个url替换一下数字,然后得到一个新的url,再找这个新的链接的信息. # ...

  9. How To Secure Nginx with Let's Encrypt on Ubuntu 14.04

    https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-14 ...

  10. CDH4.5.0下安装snappy

    编译源代码 http://www.cnblogs.com/chengxin1982/p/3862289.html 测试参考 http://blog.jeoygin.org/2012/03/java-c ...