git-diff-tree Questions
2
Sometimes when you drastically change a file, it triggers a rewrite:
yes | head -256 > pa.txt
git add .
git commit -m qu
truncate -s128 pa.txt
yes n | head -64 >> pa.txt
git commit -am ro...
Edwinedwina asked 6/1, 2016 at 5:4
1
Solved
Is there a Git command I can use that will list the names of all files that exist in one branch that do not exist in another branch?
Background: Someone deleted some history and then pushed origin...
Marry asked 2/2, 2015 at 19:6
5
Solved
I use the following Git command
git diff-tree --no-commit-id --name-only -r <SHA>
to get a list of changed files.
Unfortunately, the list doesn't specify the type of change for each file:...
Weakminded asked 17/7, 2014 at 12:29
1
© 2022 - 2024 — McMap. All rights reserved.