导航菜单
首页 >  Qt使用github  > Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记

各位读者,知识无穷而人力有穷,要么改需求,要么找专业人士,要么自己研究

红胖子(红模仿)的博文大全:开发技术集合(包含Qt实用技术、树莓派、三维、OpenCV、OpenGL、ffmpeg、OSG、单片机、软硬结合等等)持续更新中…(点击传送门)

Qt开发专栏:实用技巧(点击传送门)

 

前话

    一直使用svn,准备依照自己的兴趣开发一些长期维护的小项目,使用gitHub完成项目的长期开发和维护。

 

安装git

    git下载地址:https://git-scm.com/downloads

安装过程(略),注意要安装git Bash(右键菜单中会有Git Bash Here):

    Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_qtcreator

 

配置git bash秘钥

    右键菜单“git bash here”将git命令行窗口运行出来,设置邮箱和用户名(使用者在github上面注册的账户名和邮箱),其他使用默认即可,如下图:

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_02

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_qtcreator_03

    拿到秘钥文件地址,会使用到“id_rsa.pub”文件中的秘钥内容。

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_qtcreator_04

 

在gitHub创建项目并添加本机秘钥

    登录gitHub创建一个项目,gitHub网址:https://github.com/

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_bash_05

    点击“Start a project”

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_06

    创建成功后,如下图:

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_bash_07

   可以查看到该项目的git地址(在qtcreator中将会用到):

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_08

下面添加本机的ssh秘钥

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_github_09

  Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_bash_10

 Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_qtcreator_11

 

使用QtCreator搭建github项目

    打开QtCreator,配置Git的安装路径(指定到Git的bin目录即可),如下图:

    Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_javascript_12

使用qt创建一个项目,然后操作如下图:

    Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_13

在文件夹下,右键点出“git bash here”

git initgit remote add origin https://github.com/hongMoFang/ui.gitgit push -u origin master

错误如下:

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_bash_14

网上查了一下是因为github禁用了TLS v1.0 and v1.1,安装GCMW-1.14.0.exe即可,下载地址如下:

https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.14.0

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_15

然后登陆上之后,push会失败,需要先下载文件下来,因为github有一个README.md文件,

git push -u origin master

会失败,继续:

git pull –rebase origin mastergit push --set-upstream origin master

运行成功如下图:

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_16

查看github云端如下图:

Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_17

 

QtCreator从github下载

    从github上pull到本地,会覆盖本地文件,与svn一样

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_qtcreator_18

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_github_19

 

QtCreator与github比较不同

    Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_github_20

 

QtCreator上传至github

    这里记住,一定要先本地commit,否则提交会是已经最新的

    Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_javascript_21

  提交更改

  Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_github_22

  push到github上去

   Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_github_23

    成功,如下图(右侧是github上的文件):

    Qt实用技巧:QtCreator使用git(gitHub)管理项目代码笔记_git_24

   

 

相关推荐: