Shows the commit logs of a Git repo

learn more… | top users | synonyms

1
vote
1answer
35 views

Getting the total diff made by all commits matching a string

When our development team use Git we always include the case number we are working with in the commit message. When we code review a particular case, we would like to a way to show all the changes ...
0
votes
1answer
20 views

How to find when submodule was added to Git

I want to know the commit when a specific submodule was added, in other words I want to know the commit where .gitmodules file is modified to add the following [submodule "submodule1"] path = ...
0
votes
0answers
8 views

How to print the current submodule in a git submodule foreach?

git submodule foreach "git log --pretty=format:'<tr><td style=''font-weight:bold;''>%an</td><td>%ci</td><td align=''right''>%h</td></tr><td colspan=4 ...
0
votes
1answer
25 views

How to “toggle” the date format of git-log? How to display both relative and absolute dates simultaneously in the same git log?

My current default git log line runs as follows: git log --graph --date=relative --pretty=format:'%Cblue%h%Creset %Cgreen(%cr)%Creset -%C(yellow)%d%Creset %s' --abbrev-commit -7 Sometimes, however, ...
2
votes
3answers
85 views

Git - why are double dashes needed when running a command on a deleted file?

Consider a git repository, where a file was once deleted. git rm path/to/file git commit -a -m"testing" Ok, now I want to see the git log for the file, but I receive the classic error message: git ...
1
vote
1answer
26 views

How to show date's day part with a leading zero in Git log with --date=local?

I currently use: git log --pretty='format:%ad %Cgreen%h%Cred%d %Creset%s' --date=local which produces: Tue Apr 2 16:02:24 2013 b8b3975 Debug info for hidHandle.isClosed added. Mon Apr 1 15:31:46 ...
1
vote
0answers
38 views

How to speed up operations for textual content, for repo containing a combination of large binary/normal text files?

While the single repository isn't completely unmanageable, it is a pain for operations concerning the textual content only (i.e. git log -Gword), so much so that I'm willing to consider having a ...
1
vote
1answer
40 views

How can I make git list all changed files of a certain type in a specific path for a specific bug?

I would like to know how to make git list all changed files of a certain type (e.g. all php files) filed under a certain bug no. or which are still uncommitted and are in a specific path I'll ...
1
vote
1answer
49 views

Why is git log --cherry-pick not removing equivalent commits?

I have been trying to use git log --no-merges --cherry-pick --right-only master...my-branch to generate a list of commits that are in the my-branch, but not in master (as per the git-log ...
0
votes
2answers
47 views

How to find out which commit went first?

Having two commits SHA1, how do I get which went first without manually analyzing the git log? Note that I am not trying to find which one is the ancestor of the another, I want to know which one was ...
0
votes
2answers
35 views

error in git log

So I have been coming into this git log error several times now. I wrote this simple java code to illustrate it. I commit my progress (writing it gradually) and then run git log -p --decorate class ...
1
vote
1answer
81 views

Using git log, is there a way to get '--name-status' and '--numstat' in one command?

For all files of a commit, I would like both the status modifier --name-status provides, as well as the amount of added and deleted lines that --numstat gives. Say I have the following: > git log ...
1
vote
1answer
51 views

Get total number of lines before AWK's END

I'm ALMOST managing to get a whole git log outputted to a valid JSON format, the only thing missing now is to get rid of a trailing comma at the end of the JSON array (see output below). Since I've ...
0
votes
3answers
42 views

Git: show all commits on a given weekday

Can I see all of the commits which were made on a Sunday? Any and all Sundays, to be clear.
5
votes
2answers
549 views

Unexpected underscore in git log --graph output

When running git log --graph on my copy of the Linux kernel, I'm seeing an underscore in the graph that doesn't look like it should be there. What does that underscore mean? The specific command ...
2
votes
1answer
77 views

Why does “git log --name-only” show one file change, but “git diff” shows more?

When I run git log --name-only it shows sha1 and sha2 as consecutive commits and only one file was changes in sha2. However, when I run git diff sha1 sha2 it shows differences in a lot of ...
0
votes
0answers
81 views

Output git log to JSON including --shortstat

I have managed to output mostly any data related to a commit using a gitconfig alias combined with a git command (and that's working!): gitconfig alias: [alias] gitlogtojson = !git log ...
0
votes
1answer
62 views

How to fix a git log author name?

When my development team uses git to commit, there times where they do it from an environment they are new in. When this happens, their git config has not been properly set up and they commit to the ...
1
vote
0answers
73 views

How does `git log --since` count?

I have a simple test repository with just several commits and want to see the date&time filtered log: # git log --author="automatix" --since="2013-01-30" --pretty -- test commit ...
2
votes
2answers
91 views

Git format-patch vs git log -p

I would like to retrieve a list of commits as patches and then try to apply them to another repo in which I stored a very close project to the one from wich I want to retrieve the patch : how can I in ...
2
votes
1answer
54 views

git command to show branch/feature name from a sha1 hash

How do I get the branch/feature name from a sha1 hash on the command line? Also how is this done using pretty=format syntax. I see that it's done somehow using this method git log --graph ...
0
votes
4answers
716 views

Your branch is ahead of 'origin/master' by X commits. How to find the X commits?

I was checking the X commits using the following command: git log --author=<my-name> -<X> But the problem is that I accidentally pulled code from another repository and added the ...
1
vote
1answer
131 views

Escaping in Powershell for a git log

I know the escape character is (`), the backtick, but even if I try to use it toe escape the < characters I get error... git log ORIG_HEAD --no-merges --date=short ...
3
votes
1answer
97 views

changes to .gitignore not shown in log but shown in commit to commit diff

10 something commits back, I made a change to .gitignore file. Today when I pulled the latest code, my change was not there. So I ran this command: git log -p .gitignore And it showed me that the ...
0
votes
1answer
69 views

Formatting git-log using preg_match

I want to format git-log match in a convenient way. The output of git-log command is given: commit 11ae9c97409fb349e2bfa50ed65bd23ec6dbca70 Author: Fabien Potencier <fabien.potencier@gmail.com> ...
1
vote
3answers
73 views

How do I see the commit differences between branches in git?

I'm on branch-X and have added a couple more commits on top of it. I want to see all the differences between MASTER and the branch that I am on in terms of commits. I could just do a git checkout ...
1
vote
1answer
140 views

How to show git log with branch name

I try git log w/ --decorate and --source options. But still can not get the branch name of commit 2f3cb60 and d7e7776, Why? #git log 2f3cb60 --graph --decorate --source --all --oneline ... * | | | ...
2
votes
2answers
162 views

git log command to check for commit history on remote server

I am trying to access commit history on a remote server on a particular branch and project...if I upload something from my local client I can see the commit history whenever I do git log,I read ...
8
votes
3answers
149 views

Find Git commits that contain multiple specific commits

General problem: Given a set of commits, how do I find the list of commits that have all those commits as ancestors, or relatedly, the first commit(s) that contain all those commits. I can find ...
1
vote
1answer
77 views

git mergetool --follow?

is there a flag for git-mergetool that behaves like --follow from git-log? --follow Continue listing the history of a file beyond renames (works only for a single file). Basically ...
2
votes
1answer
99 views

Configuring git log to use mailmap by default

Is there a way to configure git log to use a mailmap file by default? Without having to specify a format (or an alias for one).
0
votes
0answers
23 views

How to track on which commits each of the lines in a file appears and disappears? Starting from the 1st commit of the file

Is it possible to track a specific lines of one file through commits (which commit they are added and later removed) using any kind of python library(Gitpython), git command or some kind of diff ...
2
votes
2answers
76 views

Trying to parse a git log file in a very particular way using git log commands and python

I want to display only the diff between commits that have a tag added to them. Or the closest to this. In other words something like this: tag "5 ..." @@ -1,1 +1,3 @@ + dfd + dfgd tag "4.." @@ -1,1 ...
3
votes
3answers
150 views

GIT Weekly Activity

I would like to generate a weekly GIT report, where I can see how many code has been submitted and deleted by each developer in specific timeframe. The purpose is to get general overview of ...
1
vote
0answers
25 views

Can I affect the order/column of branches displayed in gitk and Eclipse Egit

When doing gitk --all I get a nice summary of commits/branches/tags across a whole repo. However, the way the branches are displayed is not always consistent, and it is also different to the method ...
1
vote
1answer
248 views

How to use JGit to get list of changed files?

Using JGit, I want to get a list of files changed on commits as is possible with git log --name-status. Is this possible? If so, how do you do it?
1
vote
1answer
46 views

Leave branch as a mere etiquette but with out being able to access it in GIT

I want to be able to virtually delete a branch, so no one can checkout it and make changes from that point, but leaving the name of the branch as an indicator or etiquette in the history. In other ...
0
votes
1answer
200 views

How do I get git log for a specific branch only?

Assuming the following git history: Branch1 B---C-------F---G / \ \ Master A-------D---E-------H Doing a git log master gives the log entries in following order ...
6
votes
1answer
108 views

git log without tags

So I'm doing something like git log --graph --pretty='%h %d %s' -n10 to get brief history of my recent commits. The only issue I have is that most of the time I'm not interested in seeing the ...
0
votes
1answer
53 views

git log --pretty to file with error

I do it: git log --all --format=format:'%C(bold blue)%h%C(reset) - %an%C(reset)%C(bold yellow)%d%C(reset) - %C(bold green)(%ad)%C(reset) %C(white)%s%C(reset) %C(bold white)' Right result: 2c6f8b9 ...
0
votes
0answers
171 views

Git - log entries missing after merge

I seem to have corrupted my Git repository after a merge that somehow went wrong. What I did was: git checkout <main branch> git merge <feature branch> I got a lot of conflicts which I ...
1
vote
1answer
88 views

Some tricks for Git log

I have to analyze a git repository. Thus I want to ask that is there any command in git that can do following things: Calculate number of commit times of each author/committer in a specific ...
3
votes
1answer
63 views

Git get --source information in --format

I am trying to format my git logs in a very specific format. I was originally using git log --format="%H,%an,%ae,%ad,%p" which would produce the following output (for each commit): ...
3
votes
3answers
152 views

How to make 'git log --oneline' show which commit messages are multiline

I find myself doing git log --oneline quite often to get a quick glance at changes I am about to push to or merge from the remote. Is it possible to append some identifier (such as "[...]") to mark ...
0
votes
2answers
172 views

View git changes/diffs of local commits not pushed to remote

I have three Git commits that I committed locally, but have not pushed to GitHub. I would like to view the changes/diffs for all three commits, how do I view all the diffs? I tried: git log ...
0
votes
2answers
109 views

How to show git changes pushed in the last 24 hours?

I'm familiar with the syntax for git log --since="24 hours ago" which shows changes that were committed (to the authors local repository) in the last 24 hours. We have a team of developers who are ...
3
votes
3answers
114 views

Git log stats with regular expressions

I would like to do some stats on my git log to get something like: 10 Daniel Schmidt 5 Peter 1 Klaus The first column is the count of commits and the second the commiter. I already got as far as ...
5
votes
3answers
139 views

Alias for unpushed commits, no matter what branch I'm on?

I've got a git alias that looks like this: [alias] unpushed = log origin..HEAD --pretty=format:'%h %an %s' Which works great for showing "unpushed" changes when I'm on master. But, this ...
0
votes
2answers
85 views

Git merged branch's last commit/committer

May be its asked already but I couldn't find it in here. I have a branch FEATURE merged into a branch STABLE and currently when I do git show from STABLE am getting the last commit which is commit ...
1
vote
1answer
78 views

Does git log --follow work for multple branches?

I recently see something very strange. Suppose I have three branches. They all have a file named A. A then is renamed to B independently in three branches. Then the three branches are merged into one. ...

1 2 3