“Jak wykluczyć katalog .Ide w Gitignore” Kod odpowiedzi

Gitignore Wyklucz folder

# 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

Jak wykluczyć katalog .Ide w 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

Odpowiedzi podobne do “Jak wykluczyć katalog .Ide w Gitignore”

Pytania podobne do “Jak wykluczyć katalog .Ide w Gitignore”

Więcej pokrewnych odpowiedzi na “Jak wykluczyć katalog .Ide w Gitignore” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu