命令格式 git show [options] <object>…​ 实例 a) 查看某次提交的信息 $ git show <commit> b) 查看远程仓库的信息. git remote show origin c) 查看 tag 信息. $ git show <tag> 更多 http://git-scm.com/docs/git-show…
Git GUI,Git Bash,Git CMD之间的区别 Git Bash: Bash,Unix shell的一种,Linux与Mac OS X v10.4都将它作为默认shell.Git Bash就是一个shell,是Windows下的命令行工具,可以执行Linux命令.Git Bash是基于CMD的,在CMD的基础上增添一些新的命令与功能.所以建议在使用的时候,用Bash更加方便. Git CMD: (命令行提示符)是Windows操作系统上的命令行解释程序.当你在Windows上安装gi…
命令格式 git fetch [<options>] [<repository> [<refspec>…​]] git fetch [<options>] <group> git fetch --multiple [<options>] [(<repository> | <group>)…​] git fetch --all [<options>] 命令参数 --dry-run 不执行任何操作,只显…
命令格式 git push [--all | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=<git-receive-pack>] [--repo=<repository>] [-f | --force] [--prune] [-v | --verbose] [-u | --set-upstream] [--[no-]signed|--sign=(true|false|i…
命令格式 git clone [--template=<template_directory>]  [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]  [-o <name>] [-b <name>] [-u <upload-pack>] [--reference <repository>]  [--dissociate] [--separate-git-dir <git dir…
2018年10月12日 莫名其妙出现cmd下git log中文乱码问题,显示一堆<E4><A8>之类的乱码.git bash却一切正常. 怀疑是Windows系统升级出现的不兼容问题. 把git升级到最新版本,没有解决问题. 参考网上设置 git config --global i18n.logoutputencoding gbk 无果,反而git bash也出现了乱码问题.大概判断是cmd的编码配置问题. 配置重设为:git config --global i18n.logout…
命令参数 --get 获取指定的配置项. --global 对于写选项:全局配置,将参数配置于 ~/.gitconfig 而不是仓库目录下的 .git/config.对于读选项:只从 ~/.gitconfig 文件中读取配置. --local 对于写选项:将参数配置于 仓库目录下的 .git/config,这是默认的设置. -l, --list 列出配置文件中的所有配置项. 配置文件 如果没有显示地指定 --file 选项,则有 4 个文件供 git 配置查询配置项. $(prefix)/etc…
命令格式 git init [-q | --quiet] [--bare] [--template=<template_directory>] [--separate-git-dir <git dir>] [--shared[=<permissions>]] [directory] 命令参数 --quiet, -q 安静模式,只打印错误和警告信息. 实例 a) 创建版本库 [huey@huey-K42JE git]$ mkdir hello_git [huey@huey…
命令格式 git add [--verbose | -v] [--dry-run | -n] [--force | -f] [--interactive | -i] [--patch | -p] [--edit | -e] [--[no-]all | --[no-]ignore-removal | [--update | -u]] [--intent-to-add | -N] [--refresh] [--ignore-errors] [--ignore-missing] [--] [<path…
命令参数 git status [<options>…​] [--] [<pathspec>…​] 命令格式 --short, -s 短格式输出. -- long 长格式输出,默认选项. 实例 a) 查看工作树的状态 [huey@huey-K42JE hello_git]$ git status # On branch master nothing to commit (working directory clean) [huey@huey-K42JE hello_git]$ da…