本书主要讲把愿景落实到每天行动中的方法,当你想要对自己的人生做规划时,想要系统学习推荐看这本书只管去做,阅读时间在3个小时左右,如果要快速了解可以看下这篇文章。
阅读更多
HTTP
is a protocol which allows the fetching of resources, such as HTML documents.
Clients and servers communicate by exchanging individual messages(as opposed to stream of data).The messages sent by the client, usually a Web browser, are called requests and the messages sent by server as an answer are called responses.
git config --system
:文件位置/etc/gitconfig
,系统级配置git config --global
:文件位置~/.gitconfig
或 ~/.config/git/config
文件,当前用户配置.git/config
:文件位置仓库.git/config
,当前仓库配置
1 | git config --global user.name "John Doe" |
git config --list
:列出所有 Git 当时能找到的配置
1 | git help <verb> |