Answers for "commit specific files in git"

1

git lits file in commit

// list files in a specific commit
git diff-tree --no-commit-id --name-only -r 3a379d3319
// other way
git show --pretty="" --name-only 3a379d3319
Posted by: Guest on May-25-2021
0

commit only single file in git

git commit [some files]
Posted by: Guest on February-01-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language