Skip to content

Instantly share code, notes, and snippets.

View jwdstef's full-sized avatar
🤒
Out sick

神之左手 jwdstef

🤒
Out sick
View GitHub Profile
@jwdstef
jwdstef / README.md
Created November 21, 2021 03:29 — forked from fzls/README.md
解决 青龙面板中存放的cookie数目过多(如超过45)时,会报 Argument list too long 而无法正常执行部分脚本的问题
@jwdstef
jwdstef / git_toturial
Created April 26, 2016 09:40 — forked from guweigang/git_toturial
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "xxx@xxx.com" # 配置邮件
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://git@192.168.53.168/VT.git # clone远程仓库