git自建服务器-借助蒲公英实现远程访问
文章目录
本文涉及蒲公英组网,这里大家可以参考蒲公英官网组网教程。
使用的硬件
蒲公英x3a 路由器:用于智能组网,实现内网穿透vpn功能;
orange pi3 tls 板子:主要搭建git服务器环境
笔记本电脑一台:git 客户端借助蒲公英访问端软件,实现远程访问git服务器;
git服务器搭建
登录到orange pi3 tls 中的ubuntu系统
更新下源
root@orangepi3-lts:~# apt-get update
安装git server
root@orangepi3-lts:~# apt-get install git
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Suggested packages:
gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn
The following packages will be upgraded:
git
1 upgraded, 0 newly installed, 0 to remove and 142 not upgraded.
Need to get 3,223 kB of archives.
After this operation, 172 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-security/main arm64 git arm64 1:2.34.1-1ubuntu1.9 [3,223 kB]
Fetched 3,223 kB in 1s (6,420 kB/s)
(Reading database ... 39425 files and directories currently installed.)
Preparing to unpack .../git_1%3a2.34.1-1ubuntu1.9_arm64.deb ...
Unpacking git (1:2.34.1-1ubuntu1.9) over (1:2.34.1-1ubuntu1.2) ...
Setting up git (1:2.34.1-1ubuntu1.9) ...
root@orangepi3-lts:~#
增加git用户用于git服务管理
//添加git 用户,并设置密码,用于后期git clone,pull,push等操作权限验证。
adduser git
git权限控制
权限管理可以使用gitolite或gitosis,具体可以度娘。
我这里主要是自己使用,所用就没做处理。
建立仓库
登录到git用户
git init --bare test.git
Initialized empty Git repository in /home/git/test.g/
笔记本端操作
本地上传代码
在笔记本电脑中先安装git 客户端,然后git clone下代码,最后add,commit,push进行提交
克隆代码
git clone git@蒲公英组网分配给笔记本电脑的ip:/home/git/test.git
提交代码
git add .
git commit -am ""
git push
git remote set-url --add origin 另一个仓库地址:/home/git/code.git
验证是否成功
克隆远程仓库项目,与原工程内容对比,一致则说明git 仓库迁移成功。
git clone git@蒲公英组网分配给笔记本电脑的ip:/home/git/test.git
git远程仓库地址查看
git remote -v
origin git@蒲公英组网分配给笔记本电脑的ip:/home/git/test.git (fetch)
origin git@蒲公英组网分配给笔记本电脑的ip:/home/git/test.git (push)