Notes about VCS – git
Sorry, my bad translate in process
For exclude file and directory out git use file ".gitignore":
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Here write comments, sample name or link - Atlogex (https://atlogex.com) # Исключить конкретный файл out git atlassian-ide-plugin.xml # Exclude out git папку IDE c именем ".idea" /.idea/ # Exclude all directories and files inner vendor /vendor/* # Return excluded file ".gitkeep" in git !vendor/.gitkeep # Exclude all zip files out git *.zip |