“Git Ignore Ordnerbefehl” Code-Antworten

Git Ignore Ordnerbefehl

$ touch .gitignore
Alert Alligator

Gitignore -Ordner ausschließen

# 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

Ähnliche Antworten wie “Git Ignore Ordnerbefehl”

Fragen ähnlich wie “Git Ignore Ordnerbefehl”

Weitere verwandte Antworten zu “Git Ignore Ordnerbefehl” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen