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. js实现弹幕效果

    <!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8& ...

  2. Dojo 学习笔记 之 Dojo hitch&partial

    原文: http://dojotoolkit.org/documentation/tutorials/1.10/hitch/index.html 版本: Dojo 1.10 为了更好地使用JavaSc ...

  3. Xposed截获 Android手机QQ密码

    0x00 前言 Xposed框架是一款修改系统框架服务的软件,通过它许多功能强大的模块得以实现,且不冲突地同时运作,自从Xposed框架发布以来,安卓手机的可玩性日益激增,最近很闲很蛋疼,研究下截获A ...

  4. 【MATLAB】对离散采样信号添加高斯白噪声(已知Eb/N0)

    (1)首先计算已知信号序列(采样之后得到的信号)的平均功率.该序列在第n个点处的功率为: 如果已知的信号序列中的总共的点数为N个,则该序列的平均功率为: 在MATLAB中求平均功率的方法是: Pav= ...

  5. nginx配置https服务器

    方法一 1.创建证书 #cd /usr/local/nginx/conf #openssl genrsa -des3 -out server.key 1024 #openssl req -new -k ...

  6. 思科双出口+策略路由+NAT

    使用策略路由,从教育网出去的,在教育网接口进行nat转换 访问教育网资源平时走教育网,故障走电信 访问internat走电信线路,故障走教育网 服务器静态绑定教育网ip,不管电信.联通.教育网都走教育 ...

  7. 【^.^】hello world~~

    一直以来都没有在公共博客上写作的习惯,加之Evernote的强大和方便好用,让我仅仅依赖它就足以满足日常学习笔记的记录和整理. 不过看着Evernote里面记录的大大小小的笔记已经有400+了,觉得应 ...

  8. 笨办法学Python(二)

    习题 2: 注释和井号 程序里的注释是很重要的.它们可以用自然语言告诉你某段代码的功能是什么.在你想要临时移除一段代码时,你还可以用注解的方式将这段代码临时禁用.接下来的练习将让你学会注释: #-- ...

  9. April 12 2017 Week 15 Wednesday

    Genius often betrays itself into great errors. 天才常被天才误. Genius can help us get greater achievements, ...

  10. SAP成都研究院大卫哥:SAP C4C中国本地化之微信小程序集成

    今天的文章来自Wu David,SAP成都研究院C4C开发团队的架构师,在加入团队之前曾经在SAP上海研究院工作,组内同事习惯亲切地称呼他为大卫哥. 大卫哥身高据Jerry目测有1米8以上,是成都C4 ...