标签:github
Git支持多种协议,默认的git://
使用ssh,但也可以使用https
等其他协议。
使用https
除了速度慢以外,还有个最大的麻烦是每次推送都必须输入口令,但是在某些只开放http端口的公司内部就无法使用ssh
协议而只能用https
。
使用https:
git clone https://Tenderrain@github.com/Tenderrain/gitskills.git
需要输入github注册用户对应的密码
使用ssh:
git clone git@github.com:Tenderrain/gitskills.git(#me:域名后面是冒号)
不需要输入密码
HEAD指向分支(指针),分支指向提交!
git log --graph --pretty=oneline --abbrev-commit
--abbrev-commit 只保留commit id 的前几位
--pretty=oneline 去除Author、Date等信息,只保留commit信息
--graph
可以看到分支合并图
标签:github
原文地址:http://tenderrain.blog.51cto.com/9202912/1617527