# 如何写出无法维护的代码 这是个技术活
1.什么叫“创造力”,创造力就是——就算是要干一件烂事都能干得那么漂亮那么有创意的能力。
2.什么叫“抓狂”,抓狂就是——以一种沉着老练的不屈不挠的一本正经的精神一点一点把你推向崩溃的边缘。
If builders built buildings the way programmers write programs, then the first woodpecker that came along would destroy civilization.
(如果建筑师盖房子就像程序员写程序一样,那么,第一只到来的啄木鸟就能毁掉我们的文明)
~ Gerald Weinberg (born: 1933-10-27 age: 77) Weinberg’s Second Law
# Git使用手册
# 安装
官网下载:https://git-scm.com/downloads
安装完成后,在开始菜单里找到 Git
-> Git Bash
,蹦出一个类似命令行窗口的东西,就说明Git安装成功!
还需要最后一步设置,在命令行输入:
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
1
2
2
因为Git是分布式版本控制系统,所以,每个机器都必须自报家门:你的名字和Email地址。
上一页
1 2 3 6
下一页