diff --git a/.gitignore b/.gitignore index 139cf19..157519f 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,8 @@ CMakeUserPresets.json .LSOverride # Icon must end with two \r -Icon +Icon + # Thumbnails ._* @@ -55,3 +56,14 @@ Temporary Items # .nfs files are created when an open file is removed but is still being accessed .nfs* +# ---> Project specific directories +# Исключаем содержимое папок logs/, images/, .offline/ кроме .gitkeep файлов +logs/* +!logs/.gitkeep + +images/* +!images/.gitkeep + +.offline/* +!.offline/.gitkeep + diff --git a/.offline/.gitkeep b/.offline/.gitkeep new file mode 100644 index 0000000..05ee801 --- /dev/null +++ b/.offline/.gitkeep @@ -0,0 +1,3 @@ +# Этот файл нужен для сохранения пустой папки .offline/ в git +# Автор: Сергей Антропов +# Сайт: https://devops.org.ru diff --git a/images/.gitkeep b/images/.gitkeep new file mode 100644 index 0000000..c9b60d8 --- /dev/null +++ b/images/.gitkeep @@ -0,0 +1,3 @@ +# Этот файл нужен для сохранения пустой папки images/ в git +# Автор: Сергей Антропов +# Сайт: https://devops.org.ru diff --git a/logs/.gitkeep b/logs/.gitkeep new file mode 100644 index 0000000..c280a74 --- /dev/null +++ b/logs/.gitkeep @@ -0,0 +1,3 @@ +# Этот файл нужен для сохранения пустой папки logs/ в git +# Автор: Сергей Антропов +# Сайт: https://devops.org.ru