#全局配置
git config --global core.autocrlf false
#仓库单独配置,在仓库目录下执行
git config core.autocrlf false
core.autocrlf有以下三种配置,建议设置为false:
- false:不进行换行符的自动转换,保留文件的原始换行符。
| #!/usr/bin/env bash | |
| # Download metadata, modify these as your needs. | |
| ## The directory to save the downloaded files. | |
| download_directory="/volume1/Download/EPUB" | |
| ## The website you want to visit. | |
| calibre_site="http://soulseeker.myds.me:25788" | |
| ## The formats you want to download. We only download the first present format. | |
| ## All the formats should be upper case. | |
| allow_formats=( EPUB MOBI AZW3 ) |