codecamp

1. Git 设置

目的

设置 Git 以便准备开始工作。

设置姓名和 Email

如果你以前从未用过 Git,那么你需要先做一些设置。执行下 列命令以便让 Git 知道你的姓名和 Email。如果你已经设置了 Git,那么你可以跳到下一小节。

$ git config --global user.name "Your Name"
$ git config --global user.email "your_email@whatever.com"

设置行尾首选项

Unix/Mac 用户:

$ git config --global core.autocrlf input
$ git config --global core.safecrlf true

Windows 用户:

$ git config --global core.autocrlf true
$ git config --global core.safecrlf true
Git 关于
2. Git 再谈设置
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }