I mainly work on SuSE Linux. Currently using openSUSE Tumbleweed, Qt 5.13.0. Users will use Windows. Therefore, I use GitHub to import projects when building for other platforms, as well as to work on it both at work and from home.
Create a new project Qt Widgets Application
Here we turn on version control and select Git.
The project has been created. We will not collect it yet. Create a new repository .
In the Quick setup section, select SSH.
Go to the folder with the created project and execute the commands from the section create a new repository on the command line. Change line 3 to git add * so that not only the README.md file but all project files are added to the repository.
echo "# iMpos" >> README.md git init git add * git commit -m "first commit" git remote add origin git@github.com:rust3128/iMpos.git git push -u origin master
The project is on GitHub.
To work from Qt Creator, use the Tools->Git Menu.
Import project
Select New Project->Import Project->Git Clone.
We go to the repository.
Click Clone or download, copy the link to the project https://github.com/rust3128/iMpos.git
Paste the link into the Storage field. Checking the path to the project.
The project has been imported.
You can work from different places and platforms.
I raised Win10 on VirtualBox and there I test builds under Windows.
Интересная инофрмация по импорту проекта из Git-репозитория в Qt Creator. Но вот интересный вопрос. Сколько вообще людей использует в Qt Creator импорт сразу из Git-репозитория? На моей памяти вы первый.
Это было одним из первых действий который я попробовал когда разбирался с Git.
Что-то не получилось по вашей инструкции с GitHub сладить.
На этой строке ошибка доступа к репозиторию случилась:
Что не так?
А какая конкретно ошибка была?
И вы случано при создании репозитория не инициализировали его?
Нет, не инициализировал, галка соответствующая была снята.
Вот что пишет: "Warning: Permanently added the RSA host key for IP address '140.82.118.3' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.".
Я кое-что вспомнил. Когда пробовал работать GitHub, я вроде прописывал в операционке ключ доступа. Может, дело этом?
Если систему переставлял, IP другое то надо ключ менять.
Вот статья.
У меня ошибка случилась ещё до Qt Creator, я ж написал. На этапе загрузки проекта из командной строки на GitHub.
Ключ не верный или не действительный. сформируй новый и добавь на GitHub
В статье описапно как сделать.
В какой статье? Какой ключ? Как добавить? Ничего не понятно. :) Если из этой , то как понять, какой дефолтный у меня агент SSH.
Вот ссылка по работе с ключами и GitHub https://exlmoto.ru/git-and-qt-creator/#31
Сгенерируй новый ключ и добваь его на GitHub.
Спасибо, уже разобрался по оригинальной статье на GitHub, всё заработало. Я просто хотел мягко намекнуть, что без этой информации ваша статья явно неполная.
Да я это понял. Просто предполагал что если пользуемся GitHub То он уже настроен.