centos安装gitblit

前端之家收集整理的这篇文章主要介绍了centos安装gitblit前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
centos安装gitblit

可参照 gitblit服务器文档
http://gitblit.com/setup_go.html

mkdir -p /opt/gitblit ; cd /opt/gitblit ; wget http: //dl .bintray.com /gitblit/releases/gitblit-1 .6.2. tar .gz

列出解压后目录内容

?
1
2
3
4
5
6
root@vps124229 [ /opt/gitblit ] # ls
./ docs/ gitblit-stop.sh* LICENSE service-ubuntu.sh*
../ ext/ install -service-centos.sh* migrate-tickets.sh*
add-indexed-branch.sh* gitblit-1.6.2. tar .gz -service-fedora.sh* NOTICE
authority.sh* gitblit.jar -service-ubuntu.sh* reindex-tickets.sh*
data/ gitblit.sh* java-proxy-config.sh* service-centos.sh*

默认配置文件在data/gitblit.properties,你可以根据需要自己修改

启动gitlit服务:

通过service命令:

?
5
# cp service-centos.sh /etc/init.d/gitblit
# chkconfig --add gitblit
# service gitblit start
Starting gitblit server
.

手动启动:

?
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@H_560_301@ 64
65
66
67
68
69
70
71
72
73
74
# java -jar gitblit.jar --baseFolder data
2015-01-10 09:16:53 [INFO ] *****************************************************************
2015-01-10 09:16:53 [INFO ] _____ _ _ _ _ _ _
2015-01-10 09:16:53 [INFO ] | __ \(_)| | | | | |(_)| |
2015-01-10 09:16:53 [INFO ] | | \/ _ | |_ | |__ | | _ | |_
2015-01-10 09:16:53 [INFO ] | | __ | || __|| '_ \ | || || __|
2015-01-10 09:16:53 [INFO ] | |_\ \| || |_ | |_) || || || |_
2015-01-10 09:16:53 [INFO ] \____/|_| \__||_.__/ |_||_| \__|
2015-01-10 09:16:53 [INFO ] Gitblit v1.6.2
2015-01-10 09:16:53 [INFO ]
2015-01-10 09:16:53 [INFO ] *****************************************************************
2015-01-10 09:16:53 [INFO ] Running on Linux (3.8.13-xxxx-grs-ipv6-64-vps)
2015-01-10 09:16:53 [INFO ] Logging initialized @842ms
2015-01-10 09:16:54 [INFO ] Using JCE Unlimited Strength Jurisdiction Policy files
2015-01-10 09:16:54 [INFO ] Setting up HTTPS transport on port 8443
2015-01-10 09:16:54 [INFO ] certificate alias = localhost
2015-01-10 09:16:54 [INFO ] keyStorePath = /opt/gitblit/data/serverKeyStore .jks
2015-01-10 09:16:54 [INFO ] trustStorePath = /opt/gitblit/data/serverTrustStore .jks
2015-01-10 09:16:54 [INFO ] crlPath = /opt/gitblit/data/certs/caRevocationList .crl
2015-01-10 09:16:54 [INFO ] Shutdown Monitor listening on port 8081
2015-01-10 09:16:54 [INFO ] jetty-9.2.3.v20140905
2015-01-10 09:16:55 [INFO ] NO JSP Support for /,did not find org.apache.jasper.servlet.JspServlet
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IRuntimeManager]----
2015-01-10 09:16:55 [INFO ] Basefolder : /opt/gitblit/data
2015-01-10 09:16:55 [INFO ] Settings : /opt/gitblit/data/gitblit .properties
2015-01-10 09:16:55 [INFO ] JVM timezone: America /Montreal (EST -0500)
2015-01-10 09:16:55 [INFO ] App timezone: America (EST -0500)
2015-01-10 09:16:55 [INFO ] JVM locale : en_US
2015-01-10 09:16:55 [INFO ] App locale : <client>
2015-01-10 09:16:55 [INFO ] PF4J runtime mode is 'deployment'
2015-01-10 09:16:55 [INFO ] Enabled plugins: []
2015-01-10 09:16:55 [INFO ] Disabled plugins: []
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.INotificationManager]----
2015-01-10 09:16:55 [WARN ] Mail service disabled.
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IUserManager]----
2015-01-10 09:16:55 [INFO ] ConfigUserService( /opt/gitblit/data/users .conf)
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IAuthenticationManager]----
2015-01-10 09:16:55 [INFO ] External authentication disabled.
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ---- [com.gitblit.transport. ssh .IPublicKeyManager]----
2015-01-10 09:16:55 [INFO ] FileKeyManager ( /opt/gitblit/data/ssh )
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IRepositoryManager]----
2015-01-10 09:16:55 [INFO ] Repositories folder : /opt/gitblit/data/git
2015-01-10 09:16:55 [INFO ] Identifying repositories...
2015-01-10 09:16:55 [INFO ] 0 repositories identified with calculated folder sizes in 11 msecs
2015-01-10 09:16:55 [INFO ] Lucene will process indexed branches every 2 minutes.
2015-01-10 09:16:55 [INFO ] Garbage Collector (GC) is disabled.
2015-01-10 09:16:55 [INFO ] Mirror service is disabled.
2015-01-10 09:16:55 [INFO ] Alias UTF-9 & UTF-18 encodings as UTF-8 JGit
2015-01-10 09:16:55 [INFO ] Preparing 14 day commit cache. please wait...
0 msecs
2015-01-10 09:16:55 [INFO ] built 14 day commit cache of 0 commits across 0 repositories 2 msecs
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IProjectManager]----
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IFederationManager]----
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IGitblit]----
2015-01-10 09:16:55 [INFO ] Starting services manager...
2015-01-10 09:16:55 [INFO ] Federation passphrase is blank! This server can not be PULLED from.
2015-01-10 09:16:55 [INFO ] Fanout PubSub service is disabled.
2015-01-10 09:16:55 [INFO ] Git Daemon is listening on 0.0.0.0:9418
2015-01-10 09:16:55 [INFO ] SSH Daemon (NIO2) is listening on 0.0.0.0:29418
2015-01-10 09:16:55 [WARN ] No ticket service configured.
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] ----[com.gitblit.manager.IPluginManager]----
2015-01-10 09:16:55 [INFO ] No plugins
2015-01-10 09:16:55 [INFO ]
2015-01-10 09:16:55 [INFO ] All managers started.

打开浏览器,依据你的配置进入http://localhost:8080或者https://localhost:8443。 输入默认的管理员授权:admin / admin并点击Login按钮

添加用户

回到顶部 添加仓库:

回到顶部 用命令行创建新的仓库:

完成!



先安装好jdk
http://www.jb51.cc/article/p-bqgjxdla-bw.html

安装好一般修改管理员密码和添加用户

使用Eclipse创建并上传Git项目
创建版本库

右击要上传的项目→Team→Share Project→Git

把项目先提交到本地
右击项目→Team→Commit

选中要commit的文件,点commit,完成之后,代码上传到本地的服务器了。


然后进入到这个目录右击用命令上传新项目(需要安装git 链接 http://pan.baidu.com/s/1qWJXowk 密码:9n0e
@H_403_760@ git remote add origin ssh://suzhida@182.92.218.9:29418/claim.git git push -u origin master


上传完了。(只有上传项目的时候用命令,剩下的 都可以直接使用Eclipse git插件了Commit push clone的那个了)
原文链接:/centos/379864.html

猜你在找的CentOS相关文章