Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show changed file name only with 'git log' [duplicate]

Tags:

git

People also ask

How do I show only the names of changes in git?

git show --name-only SHA1 . you can also do: git diff --name-only HEAD@{3} HEAD@{0} for the exact commits you want to compare.

How do I see changed files in git log?

To find out which files changed in a given commit, use the git log --raw command. It's the fastest and simplest way to get insight into which files a commit affects.

How do you display a list of files added or modified in a specific commit?

OK, there are a couple of ways to show all files in a particular commit... To reduce the information and show only names of the files which committed, you simply can add --name-only or --name-status flag... These flags just show you the file names which are different from previous commits as you want...


I use

git log --name-only 

or

git log --name-only --oneline

for short.


I guess you could use the --name-only flag. Something like:

git log 73167b96 --pretty="format:" --name-only

I personally use git show for viewing files changed in a commit:

git show --pretty="format:" --name-only 73167b96

(73167b96 could be any commit/tag name)


I stumbled in here looking for a similar answer without the "git log" restriction. The answers here didn't give me what I needed but this did so I'll add it in case others find it useful:

git diff --name-only

You can also couple this with standard commit pointers to see what has changed since a particular commit:

git diff --name-only HEAD~3
git diff --name-only develop
git diff --name-only 5890e37..ebbf4c0

This succinctly provides file names only which is great for scripting. For example:

git diff --name-only develop | while read changed_file; do echo "This changed from the develop version: $changed_file"; done

#OR

git diff --name-only develop | xargs tar cvf changes.tar

This gives almost what you need:

git log --stat --oneline

The commit ID and a short one line still remains, followed by a list of changed files by that commit.


Now I use the following to get the list of changed files my current branch has, comparing it to master (the compare-to branch is easily changed):

git log --oneline --pretty="format:" --name-only master.. | awk 'NF' | sort -u

Before, I used to rely on this:

git log --name-status <branch>..<branch> | grep -E '^[A-Z]\b' | sort -k 2,2 -u

which outputs a list of files only and their state (added, modified, deleted):

A   foo/bar/xyz/foo.txt
M   foo/bor/bar.txt
...

The -k2,2 option for sort, makes it sort by file path instead of the type of change (A, M, D,).


If you need just file names, like:

dir/subdir/file1.txt
dir/subdir2/file2.sql
dir2/subdir3/file6.php

(which I use as a source for tar command), you will also need to filter out commit messages.

In order to do this, I use the following command:

git log --name-only --oneline | grep -v '.{7} '

The grep command excludes (the -v parameter) every line which starts with seven symbols (which is the length of my Git hash for the git log command) followed by space. So it filters out every Git hash message line and leave only lines with file names.

One useful improvement is to append uniq to remove duplicate lines, so it will look as follows:

git log --name-only --oneline | grep -v '.{7} ' | uniq