系统重装之前端环境(windows)重新配置

非常不幸,今天电脑黑屏开不了机,所以去修了显卡。顺便也重装了系统,重装系统之后就顺手重新配置了前端环境。记录一下。
由于是windows系统,所以和mac区别较大。

  • 1.node.js, gitbash ,vscode ,yarn , chrome下载安装
  • 2.配置git使使其可以ssh免密传送
git config --global user.name majianyang #方便产品经理找(怼)你
git config --global user.email [email protected] #方便产品经理找(怼)你
git config --global push.default simple 
git config --global core.quotepath false #防止文件名变成数字
git config --global core.editor "vim" #使用vim编辑提交信息

http://www.cnblogs.com/blogzhangwei/p/5944975.html
https://liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001375234012342f90be1fc4d81446c967bbdc19e7c03d3000

~/.gitconfig alias缩写配置
 lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
a = add
ap = add -p
c = commit --verbose
ca = commit -a --verbose
cm = commit -m
cam = commit -a -m
m = commit --amend --verbose

d = diff
ds = diff --stat
dc = diff --cached

s = status -s
co = checkout
cob = checkout -b
# list branches sorted by last modified
b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"

# list aliases
la = "!git config -l | grep alias | cut -c 7-"
什么是 ~/.bashrc
就是一个文件,bash 会在启动时运行 ~/.bashrc 里面的内容

添加 alias
在 ~/.bashrc 里面添加
alias ga="git add"
alias gc="git commit -v"
alias gp="git push"
alias gl="git pull"
alias gcl="git clone"
alias gst="git status -sb"
然后运行

source ~/.bashrc

  • 3.https://secure.shadowsocks.ch/安装shadowsocks并配置,使可翻墙。
    https://github.com/Shadowsocks-Wiki/shadowsocks/blob/master/7-2-chrome-setup-guide-cn.md配置Proxy SwitchyOmega,实现自动切换。
  • 4.chrome登陆同步书签,vscode使用setting sync同步配置(https://www.jianshu.com/p/cfd7dbb5565d),(https://blog.csdn.net/weixin_34377919/article/details/87098569)。
  • 5.重装了node.js之后发现起一个vue项目报错了,node-sass有问题。故重装了node-sass
为了让 node-sass 顺利安装,请在先在命令运行
export SASS_BINARY_SITE="https://npm.taobao.org/mirrors/node-sass"
然后
npm install --save  sass-loader node-sass

你可能感兴趣的:(系统重装之前端环境(windows)重新配置)