Git常用备忘.md
引自:http://blogread.cn/it/article/6282?f=sa
配置
git config --global user.name "robbin"
git config --global user.email "fankai@gmail.com"
git config --global color.ui true
Git常用备忘.md
引自:http://blogread.cn/it/article/6282?f=sa
配置
git config --global user.name "robbin"
git config --global user.email "fankai@gmail.com"
git config --global color.ui true
| 安装zsh | |
| brew install zsh | |
| 设置zsh为默认shell | |
| mate /etc/shells | |
| 在文末增加: | |
| /usr/local/bin/zsh | |
| 将zsh设置为默认的Shell: |
| if (Meteor.is_client) { | |
| var userName = "PatelNachiket"; | |
| Template.hello.greeting = function () { | |
| return "Fetch recent tweets from Twitter stream of user : " ; | |
| }; | |
| Template.hello.events = { | |
| 'click #fetchButton' : function () { | |
| console.log("Recent tweets from stream!"); | |
| $('#fetchButton').attr('disabled','true').val('loading...'); |