git 远程版本库

简介: [root@localhost workspace]# cd repos/ [root@localhost repos]# ll 总用量 4 drwxr-xr-x 7 root root 4096 12月 30 20:34 hello-world.git [root@localhost repos]# git clone --bare hello-world.git hello-user1.git 克隆到裸版本库 'hello-user1.git'... 完成。
[root@localhost workspace]# cd repos/
[root@localhost repos]# ll
总用量 4
drwxr-xr-x 7 root root 4096 12月 30 20:34 hello-world.git
[root@localhost repos]# git clone --bare hello-world.git hello-user1.git
克隆到裸版本库 'hello-user1.git'...
完成。
[root@localhost repos]# git clone --bare hello-world.git hello-user2.git
克隆到裸版本库 'hello-user2.git'...
完成。

查看远程共享版本中有版本库

[root@localhost repos]# git ls-remote --heads file:///home/jackluo/workspace/repos/hello-world.git
9cc4e7bf2ad640a535a6b016d5d5c41688b2a408    refs/heads/hello-x.x
bb4fef88fee435bfac04b8389cf193d9c04105a6    refs/heads/helper/master
cf71ae3515e36a59c7f98b9db825fd0f2a318350    refs/heads/helper/v1.x
733dcf67eba976a61d0dc6396c9d23cb23568591    refs/heads/master

 

目录
相关文章
|
7月前
|
开发工具 git
记IDEA Git版本回退并push到远程操作
记IDEA Git版本回退并push到远程操作
173 1
记IDEA Git版本回退并push到远程操作
|
1月前
|
算法 网络安全 开发工具
[Git]关联远程库的两种方法及配置
本文介绍了 git 的四种连接方式:ssh 连接、HTTPS 连接、SVN 连接和 SVN + ssh 连接,重点讲解了 HTTPS 和 ssh 连接方式的配置及注意事项。文章详细解释了 HTTPS 连接的身份验证过程、常见问题及解决方案,以及 ssh 连接的公钥和私钥的创建、配置方法。此外,还介绍了如何在同一台电脑上连接多个 gitee 账号的方法。
117 0
[Git]关联远程库的两种方法及配置
|
6月前
|
开发工具 数据中心 git
详解IDEA git 版本回滚
详解IDEA git 版本回滚
253 0
|
3月前
|
安全 开发工具 git
git合并错了,我想回退到之前的版本
git合并错了,我想回退到之前的版本
|
7月前
|
程序员 Linux 开发工具
振南技术干货集:研发版本乱到“妈不认”? Git!(5)
振南技术干货集:研发版本乱到“妈不认”? Git!(5)
|
7月前
|
存储 安全 Linux
振南技术干货集:研发版本乱到“妈不认”? Git!(4)
振南技术干货集:研发版本乱到“妈不认”? Git!(4)
振南技术干货集:研发版本乱到“妈不认”? Git!(4)
|
4月前
|
存储 开发工具 数据库
什么是 Git 存储库?
【8月更文挑战第14天】
223 3
|
5月前
|
开发工具 git
unable to index file ‘~$git提交版本号.xlsx‘
unable to index file ‘~$git提交版本号.xlsx‘
|
6月前
|
开发工具 git
技巧分享:Git怎么修改已经提交版本的版本注释
技巧分享:Git怎么修改已经提交版本的版本注释
85 4
|
6月前
|
缓存 项目管理 开发工具
Git项目管理——提交项目和版本回退(二)
Git项目管理——提交项目和版本回退(二)
66 2