需求
帮我整理.git/info/exclude文件,把人工智能才能生成的东西写在这里,把人类写的不被追踪的东西写在.gitignore里
.git/info/exclude
zhiyuan@ubuntu:~/kronos-project/Kronos/.git/info$ cat exclude # git ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ AGENTS.md docs/ # Local-only research artifacts and assistant files **/AGENTS.md **/session-ses_*.md # Experiment log directories (all versions) examples/adaptive_tokenizer/**/*_log examples/adaptive_tokenizer/**/visualizations/ examples/adaptive_tokenizer/**/*.png # Multi-stock data (stub CSVs, not part of repo) examples/data/multi_stock_validation/ zhiyuan@ubuntu:~/kronos-project/Kronos/.git/info$
.gitignore
# Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Jupyter Notebook .ipynb_checkpoints # PyCharm .idea/ # VS Code .vscode/ # macOS .DS_Store .AppleDouble .LSOverride # Windows Thumbs.db ehthumbs.db Desktop.ini # Linux *~ # Data files (large files) *.feather *.parquet *.h5 *.hdf5 # Model files (large files) *.pth *.pt *.ckpt *.bin # Logs *.log logs/ examples/adaptive_tokenizer/**/adaptive_tokenizer_example_log examples/adaptive_tokenizer/**/compare_tokenizers_experiment_log # Finetune artifacts finetune_csv/finetuned/ # Web UI outputs webui/prediction_results/ # Paper template build outputs docs/paper_template/build/ docs/paper_template/*.aux docs/paper_template/*.bbl docs/paper_template/*.bcf docs/paper_template/*.blg docs/paper_template/*.fdb_latexmk docs/paper_template/*.fls docs/paper_template/*.log docs/paper_template/*.out docs/paper_template/*.pdf docs/paper_template/*.run.xml docs/paper_template/*.synctex.gz docs/paper_template/*.toc # Environment .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Temporary files *.tmp *.temp temp/ tmp/ .python-version # uv .venv/ 国内市场日线/