Skip to content

Instantly share code, notes, and snippets.

@MasterHans
Created August 1, 2021 08:07
Show Gist options
  • Save MasterHans/45e763b115f18d88a213c27c88084510 to your computer and use it in GitHub Desktop.
Save MasterHans/45e763b115f18d88a213c27c88084510 to your computer and use it in GitHub Desktop.
Rules for .gitignore
1. Если исключаем папку например ajax обязательно указать
/ajax
чтобы брало от корня.
Если указать просто ajax - исключит изо всех подпапок по всему сайту этоу папку.
2. Исключить папку bitrix, но оставить подпапку aspro_max внутри.
/bitrix/*
!/bitrix/templates/
/bitrix/templates/*
!/bitrix/templates/aspro_max/
Папка aspro_max находится в подпапке templates.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment