git 常用 指令 2022-07-03 git、开发、文章4yop发表留言 git status 查看修改文件列表 git add [文件] 提交,.为全部添加 git commit -m ‘xxx’ 说明 git push 推送 git pull 拉…
git 冲突 2021-10-20 git4yop发表留言 1.error: Your local changes to the following files would be overwritten by merge:xxxx 解决: ①git stash…
使用git 常见的错误 2021-08-30 git4yop发表留言 1.fatal: unable to access ‘https://github.com/xxx/xxx/’: OpenSSL SSL_read: Connection wa…
Could not resolve: api.github.com (Timeout while contacting DNS servers) Now trying to download from source 2021-07-27 composer、git、PHP4yop发表留言 Could not resolve: api.github.com (Timeout while contacting DNS servers) Now trying to download from…
git status ,fatal: index file corrupt 2021-06-25 git、开发4yop发表留言 报错 : git status ,fatal: index file corrupt 案发现场:提交代码时突然电脑蓝屏 解决步骤: ①rm -rf .git/index #删除索引 ②git rese…
变量常用命名 2021-05-22 composer、git、JavaScript、linux、mysql、PHP、shell、开发、文章、算法与数据结构4yop发表留言 命名 意思 notify 通知 banner 轮播图,幻灯片 img,image,pic,picture,photo 图 address 地址 goods 商品 product 产品 article,…
将github仓库的语言修改 2021-05-22 git、开发、文章4yop发表留言 将左下角的语言修改 在根目录下创建 .gitattributes文件; 在.gitattributes内添加内容,格式为 *.后缀名=语言; 比如: *.js linguist-language=ph…