
git一般使用
mus_木司
武理学生,正在学习前端知识orz
简历:https://mus-z.gitee.io/resume/
展开
-
git合并提交历史
git log --oneline查看历史假设我想合并上述几行git rebase -i fef9220借鉴一篇vim的使用指南才能操作https://github.com/vim-china/hello-vim/blob/master/quick-start-guide.md用i键启动编辑模式编辑结束之后esc->:->wq保存退出...原创 2020-12-16 13:27:48 · 426 阅读 · 0 评论 -
failed to push some refs to XXX 解决
初始化项目出问题报错没有引用删掉.git重新初始化都不行https://blog.youkuaiyun.com/k_young1997/article/details/90489734用了这句之后 git pull origin master --allow-unrelated-historie正常的使用下面的初始化居然解决了,谢天谢地git pull --rebase origin mastergit add .git commit -m "描述"git push -u origin...翻译 2020-07-24 21:16:10 · 163 阅读 · 0 评论 -
怎么撤销git add 的内容--reset
因为git add .的命令我们经常使用,他是把文件模块暂时缓存到本地有时候我们add之后又改了代码,所以想重新add,但是之前add但是没有commit的文件还在,想撤销怎么办呢?这时候有两个命令可以用git status //查看已经add的我们可以知道文件目录了然后就是可以用撤销命令reset鉴于我们文件少又懒得查目录,就直接撤销全部就好了git reset .之后重新add就行了...原创 2020-05-23 19:07:21 · 46030 阅读 · 0 评论 -
【转载】git常用指令
https://zhuanlan.zhihu.com/p/52654681 学习网站及本文插图来源Git教程创建版本库mkdir textcd textgit init把文件添加到仓库- git add: 把要提交的所有修改放到暂存区(Stage),可以add多次,添加多个文件- git commit:一次性把暂存区的所有修改提交到分支,把所有add的文件一次性提交到分支,相当于游戏的一次次的存...转载 2020-04-08 14:28:36 · 108 阅读 · 0 评论 -
git第一次clone别人的github项目包
使用git-clone命令从github上同步github上的代码库时,如果使用SSH链接,而你的SSH key没有添加到github帐号设置中,系统会报下面的错误:Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct a...原创 2020-03-28 17:45:04 · 3285 阅读 · 0 评论 -
关于初始化git不小心把东西都remove了的情况
今天干了件蠢事,我有一个项目包打算放到gitee上边,别的都挺顺利的初始化的,之后再push的时候发现它提示和新建的远程仓库不同步。我就直接pull了一下然后本地文件夹就被覆盖成删了好多文件的样子。各种配置啊还有素材啊都没了。。因为我大概是知道git有记录的功能,所以查了好久。git checkout是不行,只能知道我丢了啥,但是没给我复原。然后看了https://www.it1352.c...原创 2020-03-27 21:18:26 · 536 阅读 · 0 评论 -
github报错:The file will have its original line endings in your working directory
问题描述: git add:添加至暂存区,但并未提交至服务器。git add . 是表示把当前目录下的所有更新添加至暂存区。有时在终端操作这个会提示:warning: LF will be replaced by CRLF in ball_pool/assets/Main.js.The file will have its original line endings in you...转载 2020-02-16 22:20:30 · 685 阅读 · 0 评论 -
【解决】Merge branch 'master' of https://gitee.com/
Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with ‘#’ will be ignored, and an empty messa...原创 2020-02-06 19:47:49 · 12827 阅读 · 1 评论 -
gitee的远程仓库上的回滚到上一次
问题:当我上传错误,想取消上一次版本在gitee或者github上的版本体现的时候,我想把远程仓库的版本回滚首先查看版本号列表$ git reflog在这里我不想要db52442 (HEAD -> master, origin/master) HEAD@{0}: commit: 20200206这个版本,要回退到昨天的0ea2750版本使用reset方法$ git res...原创 2020-02-06 19:37:36 · 17276 阅读 · 3 评论 -
我自己的git推送远程库步骤
更新文件之后git add .git commit -m “描述”git push -u origin远程库更新后git pull即可原创 2020-01-12 15:20:07 · 199 阅读 · 0 评论