搭建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
相关推荐
烛.照1031 小时前
Nginx部署的前端项目刷新404问题
运维·前端·nginx
嵌入式小能手3 小时前
移植前准备之git管理内核源码
git
Yungoal3 小时前
Unity git版本管理
git
华纳云IDC服务商3 小时前
超融合服务器怎么优化数据管理?
运维·服务器
会飞的土拨鼠呀3 小时前
Prometheus监控minio对象存储
运维·prometheus
hy____1234 小时前
动态内存管理
linux·运维·算法
ks胤墨4 小时前
Docker快速部署高效照片管理系统LibrePhotos搭建私有云相册
运维·docker·容器
小度爱学习4 小时前
数据链路层协议
运维·服务器·网络·网络协议·网络安全
hhzz4 小时前
Ansible自动化运维实战--通过role远程部署nginx并配置(8/8)
运维·自动化·ansible
_Eden_4 小时前
Ansible介绍与入门学习
运维·学习·ansible