git
文章平均质量分 77
在路上的咸鱼
~~~
展开
-
本地没有任何修改,只是git pull时,显示git ahead of ‘origin/master‘ by * commits
目录TL;DR问题原因解决方案TL;DR本地没有更改,只是从远程pull,但是显示Your branch is ahead of ‘origin/master’ by 3 commits.原因是从远程更新了本地的master 分支,但是没有更新本地的追踪分支 origin/master, 解决方案是运行:git fetch让本地追踪分支(tracing branch)和远程同步太长不看版到此结束,以下是具体原因和发现问题的经过。问题从服务器或者github clone下来之后,在本地还没原创 2021-07-12 14:06:59 · 2556 阅读 · 0 评论 -
git手记
0. 基础知识git属于分布式版本控制,通俗来说,就是整个项目没有真正意义上的官方版本,每个人在自己的电脑上都有一个属于自己的版本库,但是大家通过pull(拉回),push(推送)和commit(提交)来完成协作。 其中: 1. pull是从别人的版本库那里获取内容 2. push是把内容推到一个版本库 3. commit是提交到版本库 这里有一个版本库的概念...原创 2017-09-02 14:59:44 · 219 阅读 · 0 评论 -
不跟踪文件
git rm --cached readme.txt原创 2019-03-04 15:33:21 · 139 阅读 · 0 评论 -
remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git
Warning: These procedures will permanently remove files from the repository on your computer and GitHub. If the file is important, make a local backup copy in a directory outside of the repository....原创 2019-03-04 16:11:08 · 5706 阅读 · 0 评论