diff --git a/pages.de/common/git-ignore-io.md b/pages.de/common/git-ignore-io.md new file mode 100644 index 0000000000..2101cbbaff --- /dev/null +++ b/pages.de/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Erstelle `.gitignore` Dateien aus vorgefertigten Vorlagen. +> Weitere Informationen: . + +- Liste alle verfügbaren Vorlagen auf: + +`git ignore-io list` + +- Erstelle eine `.gitignore` Vorlage: + +`git ignore-io {{eintrag_a,eintrag_b,eintrag_n}}` diff --git a/pages.de/common/git-ignore.md b/pages.de/common/git-ignore.md deleted file mode 100644 index 289c1057e9..0000000000 --- a/pages.de/common/git-ignore.md +++ /dev/null @@ -1,12 +0,0 @@ -# git ignore - -> Erstelle `.gitignore` Dateien aus vorgefertigten Vorlagen. -> Weitere Informationen: . - -- Liste alle verfügbaren Vorlagen auf: - -`git ignore list` - -- Erstelle eine `.gitignore` Vorlage: - -`git ignore {{eintrag_a,eintrag_b,eintrag_n}}` diff --git a/pages.fr/common/git-ignore-io.md b/pages.fr/common/git-ignore-io.md new file mode 100644 index 0000000000..0a8162adba --- /dev/null +++ b/pages.fr/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Générer le fichier .gitignore depuis des templates prédéfinis. +> Plus d'informations : . + +- Lister les templates disponibles : + +`git ignore-io list` + +- Générer un template .gitignore : + +`git ignore-io {{item_a,item_b,item_n}}` diff --git a/pages.fr/common/git-ignore.md b/pages.fr/common/git-ignore.md deleted file mode 100644 index 3b3b62e2b4..0000000000 --- a/pages.fr/common/git-ignore.md +++ /dev/null @@ -1,12 +0,0 @@ -# git ignore - -> Générer le fichier .gitignore depuis des templates prédéfinis. -> Plus d'informations : . - -- Lister les templates disponibles : - -`git ignore list` - -- Générer un template .gitignore : - -`git ignore {{item_a,item_b,item_n}}` diff --git a/pages.it/common/git-ignore-io.md b/pages.it/common/git-ignore-io.md new file mode 100644 index 0000000000..d910dbba9c --- /dev/null +++ b/pages.it/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Genera file .gitignore usando template predefiniti. +> Maggiori informazioni: . + +- Elenca i template disponibili: + +`git ignore-io list` + +- Genera un template `.gitignore`: + +`git ignore-io {{elemento_a,elemento_b,elemento_n}}` diff --git a/pages.it/common/git-ignore.md b/pages.it/common/git-ignore.md deleted file mode 100644 index fe5657953e..0000000000 --- a/pages.it/common/git-ignore.md +++ /dev/null @@ -1,12 +0,0 @@ -# git ignore - -> Genera file .gitignore usando template predefiniti. -> Maggiori informazioni: . - -- Elenca i template disponibili: - -`git ignore list` - -- Genera un template `.gitignore`: - -`git ignore {{elemento_a,elemento_b,elemento_n}}` diff --git a/pages/common/git-ignore-io.md b/pages/common/git-ignore-io.md new file mode 100644 index 0000000000..f512127745 --- /dev/null +++ b/pages/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Generate .gitignore files from predefined templates. +> More information: . + +- List available templates: + +`git ignore-io list` + +- Generate a .gitignore template: + +`git ignore-io {{item_a,item_b,item_n}}` diff --git a/pages/common/git-ignore.md b/pages/common/git-ignore.md index 2c6d8a1866..7047577639 100644 --- a/pages/common/git-ignore.md +++ b/pages/common/git-ignore.md @@ -1,12 +1,21 @@ # git ignore -> Generate .gitignore files from predefined templates. -> More information: . +> Show/update `.gitignore` files. +> Part of `git-extras`. See also `git ignore-io`. +> More information: . -- List available templates: +- Show the content of all global and local `.gitignore` files: -`git ignore list` +`git ignore` -- Generate a .gitignore template: +- Ignore file(s) privately, updating `.git/info/exclude` file: -`git ignore {{item_a,item_b,item_n}}` +`git ignore {{file_pattern}} --private` + +- Ignore file(s) locally, updating local `.gitignore` file: + +`git ignore {{file_pattern}}` + +- Ignore file(s) globally, updating global `.gitignore` file: + +`git ignore {{file_pattern}} --global`