git push时报错 ! [rejected] master: failed to push some refs to ‘https://gitee.com/**.git‘的解决方案 解决方法:使用命令 git pull --rebase origin master 将远程仓库同步到本地,然后再重新add、commit、push就行了。当然引发这种错误的原因可能不是这个,但大家可以尝试一下。经过这个方法成功解决,大家也可以进行尝试哦!错因:可能是因为在手动修改了远程仓库中的文件,导致一些文件在本地仓库和远程仓库上不一致,故而引发该错误。当然也有可能是别的原因哦,这个原因的可能性比较大!
sqlyog导入外部sql文件时报错1064 check the manual that corresponds to your MySQL server version for the right syntax to use near '(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间':卸载mysql 5.5版本升级到mysql 5.7及以上。