Pārlūkot izejas kodu

git-commit: quote message argument (#5477)

Tan A 4 gadi atpakaļ
vecāks
revīzija
d526739418

+ 2 - 2
pages.de/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - Commiten von gestagten Dateien zum Repository mit einer Nachricht:
 
-`git commit -m {{message}}`
+`git commit -m "{{message}}"`
 
 - Automatisches Stagen aller modifizierten Datei und nachfolgendem Commiten mit einer Nachricht:
 
-`git commit -a -m {{message}}`
+`git commit -a -m "{{message}}"`
 
 - Ersetzt den letzten Commit mit den gerade auf dem Stage liegenden Änderungen:
 

+ 2 - 2
pages.es/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - Raliza un commit de los archivos marcados al repositorio con un mensaje:
 
-`git commit -m {{mensaje}`
+`git commit -m "{{mensaje}}"`
 
 - Marca automáticamente todos los archivos modificados y realiza un commit con un mensaje:
 
-`git commit -a -m {{mensaje}}`
+`git commit -a -m "{{mensaje}}"`
 
 - Sustituye el último commit con los cambios marcados actualmente:
 

+ 2 - 2
pages.fr/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - Commit les fichiers en stage dans le dépôt avec un message :
 
-`git commit -m {{message}}`
+`git commit -m "{{message}}"`
 
 - Commit tous les fichiers modifiés avec un message :
 
-`git commit -am {{message}}`
+`git commit -am "{{message}}"`
 
 - Mets à jour le dernier commit avec les modifications en stage :
 

+ 2 - 2
pages.id/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - Komit file bertahap ke repositori dengan sebuah pesan:
 
-`git commit -m {{pesan}}`
+`git commit -m "{{pesan}}"`
 
 - Otomatis merubah semua file yang dimodifikasi menjadi ke status stage dan menambahkan sebuah pesan:
 
-`git commit -a -m {{pesan}}`
+`git commit -a -m "{{pesan}}"`
 
 - Ganti komit terakhir dengan perubahan yang ada di status stage saat ini:
 

+ 2 - 2
pages.it/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - Committa sul repository i file nell'area di stage con un messaggio:
 
-`git commit -m {{messaggio}}`
+`git commit -m "{{messaggio}}"`
 
 - Aggiungi all'area di stage tutti i file modificati e committali con un messaggio:
 
-`git commit -a -m {{messaggio}}`
+`git commit -a -m "{{messaggio}}"`
 
 - Sostituisci l'ultimo commit con le modifiche attualmente salvate nell'area di stage:
 

+ 2 - 2
pages.ta/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - ஒரு செய்தியுடன் களஞ்சியத்திற்கு அரங்குக் கோப்புகளை கமிட் செய்யுங்கள்:
 
-`git commit -m {{செய்தி}}`
+`git commit -m "{{செய்தி}}"`
 
 - அனைத்து மாற்றியமைக்கப்பட்ட கோப்புகளையும் தானாக நிலைநிறுத்து, செய்தியுடன் கமிட் செய்யுங்கள்:
 
-`git commit -a -m {{செய்தி}}`
+`git commit -a -m "{{செய்தி}}"`
 
 - கடைசி கட்டத்தை தற்போதைய நிலை மாற்றங்களுடன் கமிட் செய்யுங்கள்:
 

+ 2 - 2
pages/common/git-commit.md

@@ -5,11 +5,11 @@
 
 - Commit staged files to the repository with a message:
 
-`git commit -m {{message}}`
+`git commit -m "{{message}}"`
 
 - Auto stage all modified files and commit with a message:
 
-`git commit -a -m {{message}}`
+`git commit -a -m "{{message}}"`
 
 - Update the last commit by adding the currently staged changes, changing the commit's hash: