Skip to content

Instantly share code, notes, and snippets.

View wikieswan's full-sized avatar

wikieswan wikieswan

  • shanghai
View GitHub Profile
@wikieswan
wikieswan / git_toturial
Created March 7, 2016 07:37 — forked from guweigang/git_toturial
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "[email protected]" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global --unset http.proxy # remove proxy configuration on git
git clone git+ssh://[email protected]/VT.git # clone远程仓库
@wikieswan
wikieswan / 匿名函数
Created June 10, 2014 09:04
匿名函数
(function(){
console.log(a+b);
})(a,b);
@wikieswan
wikieswan / test
Created June 10, 2014 09:01
test
function a{
alert(1);
}