Snow
Snow

Reputation: 1138

Is it possible to push from Qt to a server that has git installed

I am trying to push my C++ project from Qt Creator to my server, but I can't find any direct solution.

I can only push from Qt to github. Then I pull the files from github, when connected to the server.

Is there any way that I can push directly from Qt to the server? Thanks in advance.

Upvotes: 0

Views: 60

Answers (1)

IIRC, you can push from Qt Creator to any git origin/remote. If you install git on your server and configure it to be available via https, you certainly can push to your own server! From git's perspective, your server is no different than github's. It's just a different URL.

Upvotes: 3

Related Questions