Hi everyone,
I'm trying to use QProcess with Git, I want to clone my repository to create a local copy on my computer using git clone
Typing this line in Terminalworks wellCode:
git clone ssh://user@host:port/Template.git
But in Qt, I still have a problem
Code:
QProcess process; if (!process.waitForStarted()) { qDebug() << "Error : " << process.errorString(); return 1; } //process.waitForFinished(-1); // will wait forever until finished
Error console : Error : "No such file or directory"
Any help is very appreciated