“gitignore исключить папку” Ответ

git игнорировать команду папки

$ touch .gitignore
Alert Alligator

gitignore исключить папку

# Ignore all directories, and all sub-directories, and it's contents:
*/*

#Now ignore all files in the current directory 
#(This fails to ignore files without a ".", for example 
#'file.txt' works, but 
#'file' doesn't):
*.*

#Only Include these specific directories and subdirectories:
!wordpress/
!wordpress/*/
!wordpress/*/wp-content/
!wordpress/*/wp-content/themes/
!wordpress/*/wp-content/themes/*
!wordpress/*/wp-content/themes/*/*
!wordpress/*/wp-content/themes/*/*/*
!wordpress/*/wp-content/themes/*/*/*/*
!wordpress/*/wp-content/themes/*/*/*/*/*
Witty Wallaby

Как исключить каталог .ide в Gitignore

# Ignore the node_modules directory
node_modules/

# Ignore Logs
logs
*.log

# Ignore the build directory
/dist

# The file containing environment variables 
.env

# Ignore IDE specific files
.idea/
.vscode/
*.sw*
Razvan Manole

Ответы похожие на “gitignore исключить папку”

Вопросы похожие на “gitignore исключить папку”

Больше похожих ответов на “gitignore исключить папку” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования