“GIT COMMECTECTIT FILES” Ответ

Как совершить конкретный файл в 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 lits file в коммите

// list files in a specific commit
git diff-tree --no-commit-id --name-only -r 3a379d3319
// other way
git show --pretty="" --name-only 3a379d3319
N_CN_B

GIT COMMECTECTIT FILES

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

GIT Commit Exluding One File

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

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

Ответы похожие на “GIT COMMECTECTIT FILES”

Вопросы похожие на “GIT COMMECTECTIT FILES”

Больше похожих ответов на “GIT COMMECTECTIT FILES” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования