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...
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?
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...
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 ...
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...
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 ...
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...
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...
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>....
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...
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...
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...
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...
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...
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?
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.