查看git基本信息/配置信息

查看git版本
$ git --version
git version 1.7.11.msysgit.1
查看git所有配置项
$ git config -l
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
...
查看git远程库地址
$ git remote -v
origin [email protected]:web_cmbc (fetch)
origin [email protected]:web_cmbc (push)
查看remote地址,远程分支,还有本地分支与之相对应关系等一系列信息 写道
$ git remote show origin
* remote origin
Fetch URL: https://github.com/appMobi/jQ.Mobi.git
Push URL: https://github.com/appMobi/jQ.Mobi.git
HEAD branch: master
Remote branches:
1.1 new (next fetch will store in remotes/origin)
1.2 tracked
beta tracked
master tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (local out of date)

猜你喜欢

转载自oitebody.iteye.com/blog/2256351