git / 未分类 · 2016年10月7日

gogs 搭建自己的 Git 服务器pass

Gogs 搭建自己的 Git 服务器
官网
https://gogs.io/
#不用创建库
/usr/local/mysql/bin/mysql -uroot -pevan < scripts/mysql.sql create user 'gogs'@'localhost' identified by 'evan'; grant all privileges on gogs.* to 'gogs'@'localhost' identified by "evan"; grant all privileges on gogs.* to 'gogs'@'127.0.0.1' identified by "evan"; flush privileges; exit;
./gogs web &
其实这个运行的服务还要规范一下 以及其它目录
http://45.63.53.9:3000/install
ip:3000
各种填写
其中
运行系统用户 evan
对了 我没有安装golang 环境
https://mynook.info/blog/post/host-your-own-git-server-using-gogs
https://my.oschina.net/luyao/blog/375654