有些git命令总是记不住,在我这台 Ubuntu 使用 web 版 OneNote 不方便,那就把他们记到 Blog 里吧,需要的时候翻看一下。
git remote
git remote -v # 查看当前位置的远程代码库 |
git log
# 得到某一时段提交日志 |
git tag
git tag -a v1.6.700 -m 'Release v1.6.700' |
设置 npm install 代理
npm config set proxy=http://10.17.201.60:8080 # 设置代理 |
设置 cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org |