240 发简信
IP属地:北京
  • 这里有个坑,按照版主这个方式来安装golang,执行go env时会报错
    go: cannot find GOROOT directory: /usr/local/go
    这时需要在变量中将GOROOT加进去,方法:
    在/etc/profile中最后添加
    GOROOT=/usr/local/lib/go
    export GOROOT

    linux上安装gogs搭建个人仓库

    gogs是一款类似github的开源文件/代码管理系统(基于Git),它的搭建极为简单,可以用来搭建个人的私有仓库 安装Gogs之前先安装好mysql,nginx(nginx...