1.下载地址

http://www.gitblit.com/

2.安装jdk(自行安装)

3.解压gitblit

# tar -zxvf gitblit-1.8.0.tar.gz

4.配置
# cd gitblit-1.8.0/data

# vi gitblit.properties

添加以下信息:

# SINCE 1.7.0
include = defaults.properties
server.httpPort=81
server.httpBindInterface=192.168.28.130
server.httpsBindInterface=localhost

5.启动和停止

1)前台启动

# cd gitblit-1.8.0

# ./gitblit.sh

2)后台启动

# nohup ./gitblit.sh &

3)停止

# ./gitblit-stop.sh

6.访问

http://192.168.28.130:81

登陆密码:admin/admin

7.创建用户

8.创建团队

9.创建版本库

10.分配项目给其他人员

先分配给组,再分配给组中的成员

11. 把项目提交到创库中

首先需要在需要提交代码的机器上安装git

使用命令如下:

localhost:gitClient mhx$ git clone http://admin@192.168.28.130:81/r/firstDemo.git

Cloning into 'firstDemo'...

warning: You appear to have cloned an empty repository.

localhost:gitClient mhx$ ll

-bash: ll: command not found

localhost:gitClient mhx$ ls

firstDemo gitrepo

localhost:gitClient mhx$ cd firstDemo/

localhost:firstDemo mhx$ ls

localhost:firstDemo mhx$ cp -r /Users/mhx/Downloads/registerdiscovery .

localhost:firstDemo mhx$ ll

-bash: ll: command not found

localhost:firstDemo mhx$ ls

registerdiscovery

localhost:firstDemo mhx$ cd registerdiscovery/

localhost:registerdiscovery mhx$ ls

HELP.md mvnw mvnw.cmd pom.xml src

localhost:registerdiscovery mhx$ cd ..

localhost:firstDemo mhx$ ls

registerdiscovery

localhost:firstDemo mhx$ git add *

localhost:firstDemo mhx$ git commit -m "add new file"

[master (root-commit) cafacf4] add new file

16 files changed, 677 insertions(+)

create mode 100644 registerdiscovery/.DS_Store

create mode 100644 registerdiscovery/.gitignore

create mode 100644 registerdiscovery/.mvn/wrapper/MavenWrapperDownloader.java

create mode 100644 registerdiscovery/.mvn/wrapper/maven-wrapper.jar

create mode 100644 registerdiscovery/.mvn/wrapper/maven-wrapper.properties

create mode 100755 registerdiscovery/mvnw

create mode 100644 registerdiscovery/mvnw.cmd

create mode 100644 registerdiscovery/pom.xml

create mode 100644 registerdiscovery/src/.DS_Store

create mode 100644 registerdiscovery/src/main/.DS_Store

create mode 100644 registerdiscovery/src/main/java/.DS_Store

create mode 100644 registerdiscovery/src/main/java/com/.DS_Store

create mode 100644 registerdiscovery/src/main/java/com/maohx/.DS_Store

create mode 100644 registerdiscovery/src/main/java/com/maohx/registerdiscovery/RegisterdiscoveryApplication.java

create mode 100644 registerdiscovery/src/main/resources/application.properties

create mode 100644 registerdiscovery/src/test/java/com/maohx/registerdiscovery/RegisterdiscoveryApplicationTests.java

localhost:firstDemo mhx$ git push

Password for 'http://admin@192.168.28.130:81':

fatal: Authentication failed for 'http://admin@192.168.28.130:81/r/firstDemo.git/'

localhost:firstDemo mhx$ push

-bash: push: command not found

localhost:firstDemo mhx$ git push

Password for 'http://admin@192.168.28.130:81':

Counting objects: 33, done.

Delta compression using up to 4 threads.

Compressing objects: 100% (26/26), done.

Writing objects: 100% (33/33), 50.55 KiB | 12.64 MiB/s, done.

Total 33 (delta 5), reused 0 (delta 0)

remote: Resolving deltas: 100% (5/5)

remote: Updating references: 100% (1/1)

To http://192.168.28.130:81/r/firstDemo.git

* [new branch]      master -> master

localhost:firstDemo mhx$

12.创建分支

localhost:firstDemo mhx$ ls

registerdiscovery

localhost:firstDemo mhx$ git checkout -b embrace1.0

Switched to a new branch 'embrace1.0'

localhost:firstDemo mhx$ git branch

* embrace1.0

master

localhost:firstDemo mhx$ git commit -m "add new branch"

On branch embrace1.0

nothing to commit, working tree clean

localhost:firstDemo mhx$ git push -u origin embrace1.0

Total 0 (delta 0), reused 0 (delta 0)

remote: Updating references: 100% (1/1)

To http://192.168.28.130:81/r/firstDemo.git

* [new branch]      embrace1.0 -> embrace1.0

Branch embrace1.0 set up to track remote branch embrace1.0 from origin.

localhost:firstDemo mhx$

gitblit安装使用的更多相关文章

  1. mac Gitblit安装

    jdk下载传送门 gitBlit是java编写的的 第一步 需要安装java jdk 传送门 JDK6的下载地址: http://www.oracle.com/technetwork/java/jav ...

  2. Linux(Contos7.5)环境搭建之Gitblit安装(三)

    1.yum安装git(这一步暂时不清楚是否必要,因为在window上搭建并不需要)

  3. (转)GitBlit安装

    转:https://blog.csdn.net/qq_32599479/article/details/90748371 GitBlit的安装本文是基于Windows 10系统环境,安装和测试GitB ...

  4. GitBlit (1)-- 在linux 安装 GitBlit 并运行

    Git是一款注重速度.数据完整性.分布式支持和非线性工作流的分布式版本控制工具.Git最初由Linus Torvalds在2005年为Linux内核开发而设计,如今已经成为被广泛接受的版本控制系统. ...

  5. 如何在Linux下使用Gitblit工具创建Git仓库服务

    嗨!朋友,今天我们将学习如何在你的Linux服务器或者PC上安装Gitblit工具.首先,我们看看什么是Git,它的功能以及安装Gitblit的步骤.Git是分布式版本控制系统,它强调速度.数据一致性 ...

  6. 【大话QT之十七】Jenkins介绍及安装使用文档(与Git集成)

    文章文件夹结构例如以下: 1> Jenkins与Git相关介绍 2> Jenkins部署安装 3> Gitblit部署安装 4> Jenkins与Git集成使用 5> 项 ...

  7. Gitblit配置

    Gitblit的安装配置及访问-windows (2013-09-11 11:52:31) 转载▼   分类: android基础 Git 是现在很流行的分布式版本控制工具,github更是人人皆知. ...

  8. 创建Gitblit本地服务器(For windows )01

    1.先下载gitblit  貌似需要FQ,百度云链接https://pan.baidu.com/s/1WUtBswj5TkFFcd_hiFFCcw,提取码: xr9n .因为gitblit是基于jav ...

  9. 使用Gitblit 搭建Windows Git服务器

    使用Gitblit 搭建Windows Git服务器 整理使用Gitblit搭建Git服务器的步骤. 目录 使用Gitblit 搭建Windows Git服务器 目录 下载安装 配置 运行 客户端运行 ...

随机推荐

  1. 使用hexo搭建github个人博客网站

    搭建步骤: 1>Mac或win电脑一台,本文以mac为例. 2>下载安装Git和Node 3>安装hexo 4>注册登录GitHub,创建一个仓库,库名格式为:GitHub用户 ...

  2. python matplotlib imshow热图坐标替换/映射

    今天遇到了这样一个问题,使用matplotlib绘制热图数组中横纵坐标自然是图片的像素排列顺序, 但是这样带来的问题就是画出来的x,y轴中坐标点的数据任然是x,y在数组中的下标, 实际中我们可能期望坐 ...

  3. iOS7系统中的坑——UITableViewCellScrollView

    今天开完一系列例会后,终于迎来放假的时候了,本来中午就要下班走的,想着火车票现在还很早,也就不急着走,闲着无聊,想着之前要写的内容,索性写一篇聊以打发时光,也希望对其他人有所帮助吧. 现在iOS的最新 ...

  4. JSP自己定义标签继承哪个类

    JSP自己定义标签继承哪个类 解:JSP自己定义标签继承TagSupport

  5. SQL_字符操作函数

    原创作品.出自 "深蓝的blog" 博客.欢迎转载,转载时请务必注明下面出处,否则追究版权法律责任. 深蓝的blog:http://blog.csdn.net/huangyanlo ...

  6. js 字符串常用方法

    数组方面 1.push:向数组尾部增加内容,返回的是新数组的长度. var arr = [1,2,3]; console.log(arr); var b = arr.push(4); console. ...

  7. python(39)- 网络编程socket练习

    基于tcp的套接字实现远程执行命令的操作 #服务端 import socket import subprocess phone=socket.socket(socket.AF_INET,socket. ...

  8. Python+Selenium框架设计--- Page Object Model

    POM(Page Object Model):页面对象模型,POM是一种最近几年非常流行的自动化测试模型,或者思想,POM不是一个框架,就是一个解决问题的思想.采用POM的目的,是为了解决前端中UI变 ...

  9. 每天一个linux命令(23):Linux 目录结构(转)

    对于每一个Linux学习者来说,了解Linux文件系统的目录结构,是学好Linux的至关重要的一步.,深入了解linux文件目录结构的标准和每个目录的详细功能,对于我们用好linux系统只管重要,下面 ...

  10. Day1 [上]- 认识Python

    python简单介绍: python的创始人为吉多·范罗苏姆(Guido van Rossum).1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为AB ...