".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
Git是分布式版本控制系统,可以用来跟踪文件中的变化,因此本地代码副本是完整的版本控制存储库,包含项目的各种不同版本的文件集合。那么如何在[Hostinger](/#)主机上创建和使用Git存储库?下面来看下相关操作步骤介绍。
Hostinger主机部署Git存储库的操作比较简单,首先登录到Hostinger主机账号,然后访问hPanel面板,在后台管理页面选中购买的Hostinger主机(如商业版[美国虚拟主机](/#)套餐),点击旁边的Manage按钮,在新窗口中导航至Advanced菜单,选择GIT,便可开始创建新的Git存储库了。
![](https://www.idcspy.com/wp-content/uploads/2022/08/git.jpg)
在Create a New Repository界面,我们可以简单设置Git存储库,确保选择了正确的Repository Address
和Branch,否则Git存储库可能会部署失败;如果没有选择安装路径,则网站将会默认部署到Hostinger主机账户根文件夹下(/public\_html)。
![](https://www.idcspy.com/wp-content/uploads/2022/08/ku.jpg)
向Hostinger账户添加新Git存储库后,我们将看到以下四个选项:
![](https://www.idcspy.com/wp-content/uploads/2022/08/git1.jpg)
* 1、部署已经创建的Git存储库。
* 2、每次我们向Git存储库提交新的请求时,会自动部署到项目中。
* 3、显示最新生成的输出结果。
* 4、删除选定的Git存储库。
以上是在Hostinger主机上创建和使用Git存储库的方法步骤介绍,我们在部署项目时,可以通过Git存储库查看版本文件发生的一些更改。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/103450.html