git-log Questions

3

You can see the git log window by pressing alt + 9 in Idea: I see those dots represent commits. Do these lines represent branches? If so, how to figure out which branch does each line represent? I...
Durrace asked 28/5, 2021 at 7:28

3

Solved

I'm trying to view commits made by a specific user, and want to remove any merges done by the user from the output. How can I do so? I can check for the commits of a user using git log --author=&l...
Tiberias asked 11/3, 2016 at 17:0

1

I deleted a repository in Gitlab from the website, and I am trying to retrieve it, is that possible?
Wittenburg asked 21/4, 2021 at 1:26

1

Solved

I want to see the commits by a user across all repositories in my organization in Azure DevOps. I cannot see such options available. I can see the below option in Azure DevOps, but it shows commits...
Termagant asked 29/3, 2021 at 7:33

4

Solved

How can I configure git log to show commit date instead of author date?
Impenitent asked 9/1, 2013 at 17:52

2

Solved

When I invoke the following command: git log --format=format:"%C(yellow)%h %C(blue)%s %C(green)%ad %C(reset)%an%n%n%-b" I get output that looks like this: I would like the commit bodies to be...
Celestecelestia asked 27/7, 2017 at 16:54

2

I have met an error before(GIT error: object file is empty) Then I used the method mentioned in how to fix GIT error: object file is empty? After I updated the HEAD pointer to a good object, it ...
Goodish asked 9/9, 2016 at 10:17

10

Solved

Two questions: How to show the first 10 commit in git from beginning to end. (no branch) How the specify the commit index and log it. (show the second or third) I know that git use parent to li...
Oust asked 27/4, 2012 at 5:25

2

Solved

In order to find commits on branch working not merged/picked to master yet I'm running git log --format="%h %aN %ai %f" --cherry-pick --no-merges master..working as learned here. But as ...
Alcheringa asked 16/12, 2020 at 8:44

3

Solved

I am quite confused with the output of graphic git log. I do understand that each * means a commit, whether it is a diverge, common or merge commit. I do understand that pipes means branch. Let's...
Kimball asked 25/11, 2013 at 18:13

2

Solved

I would like to search git log for a specific string to find where it was modified/deleted/added. I knew that I can do this using pickaxe (i.e., git log -S"Text") When I run this command, only t...
Rodd asked 30/7, 2018 at 14:32

4

Solved

Suppose your git commit history looks like this: A---B---C---D---E---F master \ / X---Y---Z topic Is it possible to have git list only the commits on master, A-F? In other words, if the commit...
Suki asked 20/4, 2012 at 14:25

1

Solved

I try to show the full history of a file in my git via gitlog. The problem is that the parent folder of this file was renamed in the history, and I like to see the full history. The git-log documen...
Linnea asked 20/10, 2020 at 23:27

7

Solved

Is there a way to see with git log or some other command only the commits that were added after branch creation? usage: git log [<options>] [<since>..<until>] [[--] <path>....
Alsatia asked 15/3, 2012 at 18:3

3

git log -p . only within the current directory but not in subdirectories equivalent svn log --diff --depth files . Is it possible?
Pucida asked 12/9, 2015 at 15:58

8

How do I list the tag name, tag date and tag message for all tags? It seems that git's separation of display logic for commits through git log and tags through git tag makes it difficult to list t...
Moncada asked 31/8, 2012 at 16:57

7

Solved

The man page says that log shows the commit logs and reflog manages reflog information. What exactly is reflog information and what does it have that the log doesn't? The log seems far more detaile...
Complexioned asked 25/7, 2013 at 12:13

2

Solved

How can I print git commits to print only body (commit message without title) but in one line? So commit body lines are joined, possibly separated with space, and printed as one line for one commit...
Reciprocate asked 28/3, 2018 at 15:36

2

Is it possible to get the commit log history from a local copy which is a shallow clone (--depth = 1) I am using shallow clone in my jenkins build job to get the code and build but the changelog i...
Loraleeloralie asked 11/5, 2015 at 2:52

4

Solved

I am trying to extract git logs from a few repositories like this: git log --pretty=format:%H\t%ae\t%an\t%at\t%s --numstat For larger repositories (like rails/rails) it takes a solid 35+ seconds...
Carious asked 3/2, 2016 at 20:15

1

Solved

Given the following example git commit message: My commit message summary Some more body in this message... Signed-off-by: My name <[email protected]> Issue: MYPROJ-123 I can now pa...
Cherise asked 24/11, 2017 at 14:54

1

Solved

I have a quite big repo with exactly 26731 commits, the GitKraken does not show any logs for this repo. It works fine on other repos but not in this repo, although it recognizes the branches and ta...
Ober asked 7/12, 2019 at 8:26

2

I am on a branch named feature-1. I run git log, which shows me a bunch of commits: commit <HASH-1> … commit <HASH-2> … commit <HASH-3> … commit <HASH-4> … Now I want com...
Sheatfish asked 6/7, 2015 at 9:52

4

Solved

I have a commit c. I want to get the changeset of that exact commit c + metainformation and no other one. Is there a simpler way than git log -p c^..c to do that?
Elvia asked 2/11, 2010 at 21:10

0

Reference the answer at https://mcmap.net/q/109205/-how-do-i-view-all-commits-for-a-specific-day to the question of How do I view all commits for a specific day? What is the value of HH:MM:SS ref...
Apotheosis asked 11/1, 2020 at 2:6

© 2022 - 2024 — McMap. All rights reserved.