我是靠谱客的博主 动听大米,最近开发中收集的这篇文章主要介绍QtCreator配置Git方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1

在Qt中新建工程

2

工具-Git-创建仓库

3

在Github创建一个新的repositories

4

按提示输入

➜  echo "# " >> README.md
➜  git add README.md
➜ git commit -m "first commit"
[master (根提交) 8e8155c] first commit
 1 file changed, 1 insertion(+)
 create mode 100644 README.md
➜ git remote add origin https://github.com/...
➜ git push -u origin master


5

切换到Qtcreator中,如果Git选项中manage remotes为空,添加name和url

name为origin

6

git选项中 commit

push

Github上应该出现了新的文件




如何避免git每次提交都输入密码 from https://zhidao.baidu.com/question/371172649222088564.html?qbl=relate_question_1&word=Qt%CA%B9%D3%C3git%C3%BF%B4%CE%B2%BB%D2%AA%B6%BC%CA%E4%C3%DC%C2%EB

vim /home/chinaestone/.git-credentials

输入内容
https://{username}:{password}@github.com

保存退出后执行下面命令
git config --global credential.helper store

执行完后
/home/chinaestone/.gitconfig 会新增一项
helper = store
这是再执行git push/pull的时候就不会在要求输入密码了

最后

以上就是动听大米为你收集整理的QtCreator配置Git方法的全部内容,希望文章能够帮你解决QtCreator配置Git方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(27)

评论列表共有 0 条评论

立即
投稿
返回
顶部