`
595959
  • 浏览: 63730 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

windows开发环境

    博客分类:
  • ruby
 
阅读更多
git

https://git-for-windows.github.io/

命令窗

git-bash.exe

uname -a


自动Enter passphrase for key
env=~/.ssh/agent.env

agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }

agent_start () {
    (umask 077; ssh-agent >| "$env")
    . "$env" >| /dev/null ; }

# agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2= agent not running
agent_run_state=$(ssh-add -l >| /dev/null 2>&1; echo $?)

agent_load_env

if [ ! "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then
    agent_start
    ssh-add
elif [ "$SSH_AUTH_SOCK" ] && [ $agent_run_state = 1 ]; then
    ssh-add
fi

unset env


ruby和devkit

http://rubyinstaller.org/downloads/
环境变量PATH=C:\Ruby22-x64\bin;%USERPROFILE%\DevKit-mingw64-64-4.7.2-20130224-1432-sfx\bin;%USERPROFILE%\DevKit-mingw64-64-4.7.2-20130224-1432-sfx\mingw\bin;



多tab使用conemu

https://conemu.github.io/
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics