v一、Git新建本地分支与远程分支关联问题
git checkout -b branch_name origin/branch_name
或者
git branch --set-upstream branch_name origin/branch_name
或者
git branch branch_name
git branch --set-upstream-to=origin/branch_name branch_name
v二、查看本地分支所关联的远程分支
git branch -vv
git config --list
v三、查看历史记录
git log
git log --stat
git log --shortstat
git reflog
本文转自 小眼儿 博客园博客,原文链接:http://www.cnblogs.com/hujunzheng/p/5938552.html,如需转载请自行联系原作者