搭建git服务器(本地局域网)

搭建git服务器(本地局域网)

创建仓库

(假定在/home/git目录下创建仓库)

shell 复制代码
git init --bare sample.git

克隆远程仓库到本地

shell 复制代码
git clone git@192.168.0.100:/home/git/sample.git

已有项目,绑定远程仓库

shell 复制代码
# 查看远程仓库绑定
git remote -v

# 解除远程仓库绑定
git remote -remove origin

# 绑定远程仓库
git remote -add origin git@192.168.0.100:/home/git/sample.git

推送

shell 复制代码
# 查看本地更改
git status

# 添加更改
git add -u

# 提交更改
git commit -m "提交说明"

# 推送
git push origin master

拉取

shell 复制代码
git pull origin master
相关推荐
群联云防护小杜21 分钟前
如何给负载均衡平台做好安全防御
运维·服务器·网络·网络协议·安全·负载均衡
DWei_GaGa32 分钟前
Git:查看分支、创建分支、合并分支
git
PyAIGCMaster43 分钟前
ubuntu装P104驱动
linux·运维·ubuntu
奈何不吃鱼44 分钟前
【Linux】ubuntu依赖安装的各种问题汇总
linux·运维·服务器
爱码小白1 小时前
网络编程(王铭东老师)笔记
服务器·网络·笔记
zzzhpzhpzzz1 小时前
Ubuntu如何查看硬件型号
linux·运维·ubuntu
蜜獾云1 小时前
linux firewalld 命令详解
linux·运维·服务器·网络·windows·网络安全·firewalld
陌北v11 小时前
Docker Compose 配置指南
运维·docker·容器·docker-compose
只会copy的搬运工1 小时前
Jenkins 持续集成部署——Jenkins实战与运维(1)
运维·ci/cd·jenkins
娶不到胡一菲的汪大东2 小时前
Ubuntu概述
linux·运维·ubuntu