git安装心得

Posted sisterben

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git安装心得相关的知识,希望对你有一定的参考价值。

每天码代码打卡任务,老师需要我们提交链接,这就需要我们把自己打的代码文件上传到GitHub上来,以此获得链接。
自己是一个新人,安装git也是什么都不懂(跟着网上的教程也总是能出错)
安装正常操作:https://www.cnblogs.com/sdcs/p/8270029.html
然而第一次安装中间出现不少问题,主要还是因为自己不知道要输的代码的含义,导致自己搞了个文件夹也关联好了但是就是没法把文件上传
第二次将git的repository关联到本地文件夹后,却再次没法上传file
问题如下
hp@LAPTOP-TC6D4BCR MINGW64 /d/123 (master)
$ git push origin master
To https://github.com/Sisterben/-.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to ‘https://github.com/Sisterben/-.git‘
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., ‘git pull ...‘) before pushing again.
hint: See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details.
解决方案:https://blog.csdn.net/qq_29985391/article/details/85047841
现在终于将自己的代码上传上去了!
但是下一次操作还是会出现上面的问题,要多输一次代码,先将远程仓库的内容合并到本地,然后再上传。求解。
平时需要的操作:
1.将自己的文件拖到本地文件夹
2.git add 文件
3.git commit -m“备注”

以上是关于git安装心得的主要内容,如果未能解决你的问题,请参考以下文章

马舒婕:GIT操作与学习心得

刘凯:GIT操作与学习心得

github的学习心得

仇强:GIT操作与学习心得

新手学习Git之在本地使用Git

ESP32学习笔记之ESP32-idf环境搭载心得