写了一天代码,提交时报错。拉取也不行 Can't Update No tracked branch configured for branch master or the branch doesn't exist. To make your branch track a remote branch ...
分类:
其他好文 时间:
2020-03-27 21:46:09
阅读次数:
716
报错如图: 报错原因说我,未配置DjangoTemplates后端,去看了下我后端模板配成jinja2的模板了。 如图: 解决:改为django模板就好了 如图: ...
分类:
其他好文 时间:
2020-03-26 23:10:17
阅读次数:
101
解决办法: 不修改原有引擎配置,新增引擎jinja2, 即在settings.py中 TEMPLATES = [ { 'BACKEND': 'django.template.backends.jinja2.Jinja2', 'DIRS': [os.path.join(BASE_DIR,'templa ...
分类:
移动开发 时间:
2020-03-24 15:47:21
阅读次数:
159
说明,在赶论文复现代码期间,服务器一直出现bug,如图: 原因是之前激活了conda的环境没有用 conda deactivate 退出环境,但是问题是我使用conda deactivate会继续出现上述bug 解决方法是,先跑一下: source deactivate 然后服务器应该会提示你:这个 ...
分类:
系统相关 时间:
2020-03-16 21:51:02
阅读次数:
625
错误信息: org.apache.catalina.LifecycleException: Protocol handler start failed at org.apache.catalina.connector.Connector.startInternal(Connector.java:10 ...
分类:
其他好文 时间:
2020-03-12 11:26:40
阅读次数:
98
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. P ...
分类:
数据库 时间:
2020-03-07 09:14:54
阅读次数:
87
在激活其他环境时出现CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell错误解决方法: 因为我上一个环境没退出所以 再次进 ...
分类:
其他好文 时间:
2020-03-05 20:56:37
阅读次数:
413
一开始按照网上的很多解决办法是: 启动类头部声明@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class}),但是这样会排除掉我自己的数据库配置, 检查了很多地方都没发现问题在哪里,最后自己猜想不论怎么修改applicati ...
分类:
编程语言 时间:
2020-02-22 09:39:09
阅读次数:
114
Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to dete ...
分类:
编程语言 时间:
2020-02-21 12:36:39
阅读次数:
71
在github仓库创建一个分支后,使用webstorm下载分支,发现以下提示: 点clone后,发现本地更新文件无法上传,报错: No tracked branch configured for branch master or the branch doesn't exist. 根据https:/ ...
分类:
Web程序 时间:
2020-02-20 16:53:56
阅读次数:
234