“Comment commettre un fichier spécifique dans GIT” Réponses codées

Comment commettre un fichier spécifique dans GIT

if you are in the current directory, add ./ to the front of the path;

git commit -m 'my notes' ./path/to/my/file.ext
git commit -o path/to/myfile -m "the message"
armin

git commettre un seul fichier

git commit -m 'my notes' path/to/my/file.ext
Fair Fly

Git commet des fichiers spécifiques

//add that specific file
 git add "File name"
//Committing file wiht message
git commit -m "Message of the commit"
Bhaskar Pathak

git engage hors d'un fichier

git update-index --assume-unchanged "main/dontcheckmein.txt"

/*and to undo that*/
git update-index --no-assume-unchanged "main/dontcheckmein.txt"

Réponses similaires à “Comment commettre un fichier spécifique dans GIT”

Questions similaires à “Comment commettre un fichier spécifique dans GIT”

Plus de réponses similaires à “Comment commettre un fichier spécifique dans GIT” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code