Shows the commit logs of a Git repo
1
vote
1answer
34 views
Shortcoming of git log? Why can't I see all the branches?
I have a branch in git and I am on that branch and not on master branch.
Using git log --graph I can only see linearly that I am on that branch. But I can not see that I have "splitted" from the ...
0
votes
0answers
44 views
Did I just lose every change I ever made in git?
I was working on a project last night and committing all my changes but NOT checking them in to the repo, which is my bad.
However this morning I had a small issue with object file is empty and ...
1
vote
2answers
34 views
Git: How to get commit history for just one branch?
Let's say I created a new branch my_experiment from master and made several commits to my_experiment. If I do a git log when on my_experiment I see the commits made to this branch but also the ...
2
votes
1answer
37 views
how to find git merge commits which merges into current branch
At my company we are using git flow to manage the development of a number of sites.
All of these sites are forks of a base repo. It is easy enough to update the sites with updates from the upstream ...
0
votes
0answers
14 views
git log -a --author=Name … Need to see code from each commit in this log output - how?
From the man page it doesn't look possible when using the option "-a", is there a trick using unix/linux commands instead that would perhaps do this?
Updated to clarify: -a strips commit contents
0
votes
2answers
23 views
Comparing a commit to its parent to see changes to a file
When you run git diff (specific commit)^..(specific commit), or in other words when you compare a commit to its parent, how do you know what was changed on the file. What does the change for that ...
0
votes
2answers
48 views
How can I view what was added to a file in a certain commit?
I have a homework assignment in which I have to view the bootstrap repository. I have to answer this question "What single character was added to a file in commit e17c9 (ignoring any added spaces)? ...
0
votes
1answer
42 views
How can I find my alias for `git log`?
I have my git log formatted a specific way, which works when I call git lg (note the lack of an o) and it looks quite nice. I got it from a stackoverflow answer and all I had to do was enter something ...
1
vote
2answers
88 views
How do I use vim as 'git log' editor?
When I run git log, what exactly is the editor git log is using?
Also:
Is there anyway I can use vim as my default editor for git log?
If I want to search against the git log, what's the best ...
1
vote
1answer
36 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
26 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
11 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
30 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
92 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
29 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
41 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
52 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
62 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
49 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
42 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
94 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
66 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
562 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
98 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
88 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
67 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
87 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
109 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
62 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
958 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
153 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
101 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
72 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
95 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
186 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
215 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
154 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
80 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 ...
3
votes
1answer
119 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
100 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
169 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
29 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
272 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
49 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
252 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
115 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
58 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
188 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 ...





