How to use Qtcreator on remote machine
-
I am developing a project on my linux pc. I need to test my project in another linux pc which is in same network with my pc. When testing project on it, I am modifiyng some things in project. After that I need to copy paste the changes to my project in my main pc. Is there a way to overcome this process?
-
Hi
Yes, normally you use GIT to have the code under revision and also to make it easy to share changes between different pc's.You need to invest ½ hour to learn the tool but if you are the only developer on the project then there wont be any conflicts and it should work easily.
small tut:
https://medium.com/@rukeeojigbo/git-basics-an-idiots-guide-99445a56bd65Another approach is to use pcloud on both machines. It will then sync the files but do note that if you modify the same files on both pc, it can get confused.
That said. why do you also compile on the other pc ? Most often, one copies the binary to the other box and run it to test. not build version there. If I may ask.