소스 검색

Update information regarding VCS-ignorable directories (#5429)

Co-authored-by: Hugo Locurcio <[email protected]>
zacryol 3 년 전
부모
커밋
b39374bcb1
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      tutorials/best_practices/version_control_systems.rst

+ 5 - 3
tutorials/best_practices/version_control_systems.rst

@@ -25,10 +25,12 @@ plugin can be found
 Files to exclude from VCS
 -------------------------
 
-There are some folders Godot creates you should have your VCS ignore:
+There are some files and folders Godot automatically creates. You should add them to your VCS ignore:
 
-- ``.import/``: This folder stores all the files it imports automatically based on
-  your source assets and their import flags.
+- ``.godot/``: This folder stores various project cache data. ``.godot/imported/`` stores
+  all the files the engine imports automatically based on your source assets and their
+  import flags. ``.godot/editor/`` holds data regarding the editor state, such as currently
+  opened script files, and recently used nodes.
 - ``*.translation``: These files are binary imported translations generated from CSV files.
 - ``export_presets.cfg``: This file contains all the export presets for the
   project, including sensitive information such as Android keystore credentials.