
git
文章平均质量分 86
Mliak
这个作者很懒,什么都没留下…
展开
-
IDEA GoLand 问题 Contents have differences only in line separators
IDEA文件内容没有修改,却提示 "Contents are identical" ,Contents have differences only in line separatorsidea原创 2022-06-02 00:06:27 · 6421 阅读 · 1 评论 -
git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission de
git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission denied (publickey).遇到这类问看看网上说一点都不详细,所以经过一番研究终于搞定,想给像我这样的童鞋给一篇仔细的解决办法今天第一下载完 Git-2.11.1-64-bit.exe最新版本,想原创 2017-02-13 19:40:24 · 32135 阅读 · 1 评论 -
轻松代建个人博客 Hexo+Github一步步搭建属于自己的博客
使用Hexo+Github一步步搭建属于自己的博客(基础) 前言:电脑系统为window 10专业版,64位 相关步骤:1、安装Node.js和配置好Node.js环境,打开cmd命令行,成功界面如下 2、安装Git和配置好Git环境,安装成功的...原创 2018-06-28 11:22:16 · 438 阅读 · 0 评论 -
git 简写标志 M D R A T
git 简写标志 M D R A T等含义在使用git checkout , git status,或git diff files时会出现奇怪的标志。如M,T,D,A,R,U等等。如:# git checkout masterM cpp-iniparser文件cpp-iniparser前面有个M. git的这些奇怪标志是什么意思呢。A: 增加的文件.C: 文件的一个新拷贝....原创 2018-10-28 20:05:13 · 3159 阅读 · 0 评论 -
git 快速上手(学习廖雪峰blog笔记)
git 学习1. git add file1… 添加本地库文件到仓库,未提交状态 git add -A 提交所有变化 git add -u 提交被修改(modified)和被删除(deleted)文件,不包括新文件(new) git add . 提交新文件(new)和被修改(modified)文件,不包括被删除(deleted)文件2. git commit -m ...原创 2018-10-31 08:48:20 · 296 阅读 · 0 评论