是否可以从Qt推送到安装了git的服务器

时间:2017-03-10 14:24:38

标签: git qt

我正在尝试将我的C ++项目从Qt Creator推送到我的服务器,但我无法找到任何直接的解决方案。

我只能从Qt推送到github。然后,当连接到服务器时,我从github中提取文件。

有什么办法可以直接从Qt推送到服务器吗? 提前谢谢。

1 个答案:

答案 0 :(得分:3)

IIRC,你可以从Qt Creator推送到任何 git origin / remote。如果您在服务器上安装git并将其配置为可通过<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Slider</title> </head> <body> <style type="text/css"> #slider-image-1:target ~ .image-holder { left: 0px; } #slider-image-2:target ~ .image-holder { left: -800px; } #slider-image-3:target ~ .image-holder { left: -1600px; } </style> <div class="slider-holder" style="background: yellow; height: 400px; margin-left: auto; margin-right: auto; margin-top: 0px; overflow: hidden; text-align: center; width: 560px" align="center"> <span id="slider-image-1"></span> <span id="slider-image-2"></span> <span id="slider-image-3"></span> <div class="image-holder" style="-moz-transition: left 2s; -o-transition: left 2s; -webkit-transition: left 2s; background: black; clear: both; height: 400px; position: relative; transition: left 2s; width: 2400px"> <img src="rsz_test.jpg" class="slider-image" style="float: left; margin: 0px; padding: 0px; position: relative" align="left"> <img src="rsz_1test.jpg" class="slider-image" style="float: left; margin: 0px; padding: 0px; position: relative" align="left"> <img src="rsz_test.jpg" class="slider-image" style="float: left; margin: 0px; padding: 0px; position: relative" align="left"> </div> <div class="button-holder" style="position: relative; top: -20px"> <a href="#slider-image-1" class="slider-change" style="background: brown; border-radius: 5px; display: inline-block; height: 10px; width: 10px"></a> <a href="#slider-image-2" class="slider-change" style="background: brown; border-radius: 5px; display: inline-block; height: 10px; width: 10px"></a> <a href="#slider-image-3" class="slider-change" style="background: brown; border-radius: 5px; display: inline-block; height: 10px; width: 10px"></a> </div> </div> </body> </html> 使用,那么您当然可以推送到自己的服务器!从git的角度来看,你的服务器与github没有什么不同。它只是一个不同的网址。