如何在自托管Git服务器中创建新的存储库

时间:2019-08-20 17:58:13  来源:igfitidea点击:

在本教程中,我们将学习如何在自托管Git中创建新的存储库服务器。

按照以下步骤在自托管Git服务器中创建新的存储库

第1步:以root用户登录服务器,然后切换到维护Git的Git服务器用户。

ssh root@server-IP-address

su -l git

第2步:现在切换到存储库目录。为repository创建一个新目录(使用.git作为repo名称的后缀,例如test-repo.git)

切换到新的repo目录并为新的repo和然后运行命令

git update server info用于更新git服务器信息。

$ cd repositories
$ mkdir test-repo.git
$ cd test-repo.git
$ git --bare init
$ git update-server-info

现在创建了新的git存储库。