Our cheat sheet for Git contains all the most important commands - and many tips for your daily work. Available inEnglish|Deutsch|Español|Português|العربية| Chinese or for download: Download the Cheat Sheet Get 16 of our most popular Cheat Sheets in one handy ZIP!
Git Cheat Sheet 中文版 索引 配置 列出当前配置: $ git config --list 列出repository配置: $ git config --local --list 列出全局配置: $ git config --global --list 列出系统配置: $ git config --system --list 设置用户名: $ git config --global user.name “[firstname lastname]” ...
Git cheat sheet that serves as a quick reference for basic Git commands to help you learn Git. Git branches, remote repositories, undoing changes, and more
分支与标签 更新与发布 合并与重置 撤销 创建 复制一个已创建的仓库: $ gitclonessh://user@domain.com/repo.git 创建一个新的本地仓库: $ git init 本地修改 显示工作路径下已修改的文件: $ git status 显示与上次提交版本文件的不同: $ git diff 把当前所有修改添加到下次提交中: $ git add . 把对...
Git Cheat Sheet 中文版 创建 复制一个已创建的仓库: $ git clone ssh://user@domain.com/repo.git 创建一个新的本地仓库: $ git init 本地修改 显示工作路径下已修改的文件: $ git status 显示与上次提交版本文件的不同: $ git diff 把当前所有修改添加到下次提交中:...
Git Cheat Sheet 1 01 Git configuration git config --global user.name "Your Name" Set the name that will be attached to your commits and tags. git config --global user.email "you@example. com" Set the e-mail address that will be attached to your commits and tags. git config --...
Git-Cheat-Sheet Git教程(廖雪峰) 安装Git 先去Git官网下载安装程序,安装完成后找到Git,启动Git Bash,蹦出一个类似命令行窗口的东西就表示Git安装成功! 安装完以后的配置: $ git config --global user.name"your name"$ git config --global user.email"email@example.com" ...
https://github.com/tiimgreen/github-cheat-sheet/pull/15 https://github.com/tiimgreen/github-cheat-sheet/pull/15.diff https://github.com/tiimgreen/github-cheat-sheet/pull/15.patch The .diff extension would give you this in plain text: diff --git a/README.md b/README.md index 88...
Git Cheat Sheet Git Cheat Sheet 引用自 arslanbilal/git-cheat-sheet 索引 配置 配置文件 创建 本地修改 搜索 提交历史 分支与标签 更新与发布 合并与重置 撤销 Git Flow 配置 列出当前配置: $ git config--list 列出repository配置: $ git config --local --list...
git branch branch_name hash_value # 创建一个新的分支,基于 hash_value 的这个 commit 创建一个新的分支,hash_value 可以省略,那么默认是基于当前分支的最后一个 commit 创建。 git branch -d branch_name git branch -D branch_name # 这个分支已经有了一些 commit ...