在研究git的时候,随便输了个 git remote add origin xxx; 然后再真正add 远程仓库的时候,报了git fatal: remote origin already exists.的错误 学习源头:https://blog.csdn.net/top_code/article/ ...
分类:
其他好文 时间:
2018-07-31 13:34:15
阅读次数:
113
今晚碰到这个问题-- fatal: refusing to merge unrelated histories 想了一下,为什么就这样了? 因为我是先本地创建了仓库,并添加了文件,然后再到github网上建仓库,项目名称一样的,这样一来当我想关联远程仓库,提交代码就报错了 解决方法 $ git pu ...
分类:
其他好文 时间:
2018-07-31 00:25:42
阅读次数:
208
CentOS7默认的网卡名称是和设备名称是随机的,如果要修改网卡名称以eth开头,有两种方式 第一种方式 这种方式适合在安装操作系统的时候进行设置, 点击 Tab,打开kernel启动选项, 增加内核参数:net.ifnames=0 biosdevname=0 输入完成之后回车正常安装操作系统就好了 ...
分类:
其他好文 时间:
2018-07-30 11:11:02
阅读次数:
198
1. fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access r ...
分类:
移动开发 时间:
2018-07-29 10:45:19
阅读次数:
1185
在不同的版本中日志的分级也有区别,下面以日志记录器Logger的分类来进行讨论 六个日志等级:TRACE / DEBUG / INFO / WARNING / ERROR / FATAL 还有两个特殊等级 ALL、OFF,全部日志打开和关闭,这里不做讨论 TRACE TRACE 在线调试。 该级别日 ...
分类:
其他好文 时间:
2018-07-27 14:38:23
阅读次数:
463
Linux系统下centos7安装apache源码包,遇到的问题包括APR not found以及fatal error: expat.h: No such file or directory
分类:
Web程序 时间:
2018-07-26 21:18:30
阅读次数:
162
// RotateZoom.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "RotateZoom.h" #ifdef _DEBUG #define new DEBU... ...
分类:
其他好文 时间:
2018-07-25 17:44:09
阅读次数:
148
1.安装apr 1.6.3.tar.gz apr util 1.6.1.tar.bz2 httpd 2.4.34.tar.gz (源码包下载centos7的就行,树莓派版本官方debian) 2.问题:fatal error: expat.h: No such file or directory i ...
分类:
Web程序 时间:
2018-07-22 23:36:25
阅读次数:
263
spl_autoload_register函数是实现自动加载未定义类功能的的重要方法,所谓的自动加载意思就是 我们的new 一个类的时候必须先include或者require的类文件,如果没有include或者require,则会报错。那这样我们就必须在文件头部写上许多include或require ...
分类:
Web程序 时间:
2018-07-22 17:06:43
阅读次数:
218
今天在使用weblogic10.3+jdk7创建domain的时候,建好domain后启动报如下错误信息: Unrecognized option: -jrockitError: Could not create the Java Virtual Machine.Error: A fatal exc ...
分类:
编程语言 时间:
2018-07-20 14:38:48
阅读次数:
320