1.查看git配置
config 配置有system级别 global(用户级别) 和local(当前仓库)
三个 设置先从system-》global-》local
底层配置会覆盖顶层配置
查看系统config
$ git config --system --list
查看当前用户(global)配置
$ git config --global --list
查看当前仓库配置信息
$ git config --local --list
2.全局配置git用户名及邮箱
git config --global user.name "myname"
git config --global user.email "test@gmail.com"
3.实用指令
#新建本地分支
$ git checkout -b newBranch
#将新建的本地分支推送到远程(newBranch是已经存在的本地分支名,远程分支默认与本地同名)
$ git push origin newBranch
#将本地当前所在分支关联到远程指定分支(origin/newBranch)上
$ git branch --set-upstream-to=origin/newBranch
#查看所有分支
$ git branch -a
#查看本地分支默认push的远程分支(本地与远程分支的关联关系)
$ git branch -vv
#拉取指定远程分支的代码
$ git pull origin branchName
# git 克隆指定分支的代码
$ git clone -b develop https://git.oschina.net/oschina/android-app.git
指定,克隆 https://git.oschina.net/oschina/android-app.git 仓库的 develop 分支
#持续更新中......
网友评论