Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4034034
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T11:55:17+00:00 2026-05-20T11:55:17+00:00

The title is not exact, but I can’t express it better in a single

  • 0

The title is not exact, but I can’t express it better in a single line.

  • I actually know how to change git commit message like here.
  • But I know it always changes the SHA-1 too, which I want to avoid.

I only want to see a different message in git-log. I thought it could be done somehow using git-notes, but I haven’t managed it.


Explanation:

I need it in order to fix errors in the commit messages. I always write there the name of a document containing my communication with the customer (it looks just like T1234 Replace foo by bar). The communication tends to be quite long, so I can loose a lot of time till I find out I was being mislead by wrong document name in the commit message.

Use of git-notes

It looks like git-notes in fact works as stated here. However I always use

git log --oneline

so I never see it. Concerning the comment about making git lie to the user: IMHO, this would be acceptable when this happened only when using a special switch like --replace-messages-by-notes, wouldn’t it? As I always use an alias instead of using git log directly, I’d get what I want without typing a lot.

Do you think it’s a reasonable feature request or would you recommend another workflow to me?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T11:55:18+00:00Added an answer on May 20, 2026 at 11:55 am

    As various people have pointed out (e.g. in VonC’s very useful answer), git notes really is the mechanism you’re looking for. Is it not enough for you to change your alias to the following?

    git log --oneline --show-notes
    

    Presumably it’s only occasionally that you’ll have to add a note to a commit, and the notes will visually stand out in the output of that command.

    If you really want to replace the subject of each commit if notes exist, you could always create a script along the lines of:

    for c in $(git rev-list HEAD)
    do
        n=$(git notes show $c 2> /dev/null)
        m=$(git show --oneline $c|head -1)
        if [ -n "$n" ]
        then
           m=${m/ */ $n}
        fi
        echo $m
    done
    

    … but that’s a lot uglier for little gain, in my opinion.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

actually I can not find an exact title for this problem. But I can
Sorry if the title is not that specific, but I don't know how else
The title might not explain my problem fully but I wasn't sure how to
The title is not very clear, so I'll try to explain better. I have
My question is not clear at title [i can not write it exactly] e.g
I am not sure if the title makes any sense but here is the
As the title says, I want to know the exact reason why JavaScript is
Sorry the title is not very clear. This is a follow up to my
I get a few errors saying: The name 'title' does not exist in it's
I'm getting the error mentioned in the title and not sure what exactly I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.