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

  • Home
  • SEARCH
  • 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 595247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:02:28+00:00 2026-05-13T16:02:28+00:00

Is there a way to know or get the original create/modified timestamps?

  • 0

Is there a way to know or get the original create/modified timestamps?

  • 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-13T16:02:28+00:00Added an answer on May 13, 2026 at 4:02 pm

    I believe that the only timestamps recorded in the Git database are the author and commit timestamps. I don’t see an option for Git to modify the file’s timestamp to match the most recent commit, and it makes sense that this wouldn’t be the default behavior (because if it were, Makefiles wouldn’t work correctly).

    You could write a script to set the modification date of your files to the the time of the most recent commit. It might look something like this:

    # No arguments? Recursively list all git-controlled files in $PWD and start over
    if [ $# = 0 ]; then
      git ls-files -z |xargs -0 sh "$0"
      exit $?
    fi
    
    for file in "$@"; do
      time="$(git log --pretty=format:%cd -n 1 \
                      --date=format:%Y%m%d%H%M.%S --date-order -- "$file")"
      if [ -z "$time" ]; then
        echo "ERROR: skipping '$file' -- no git log found" >&2
        continue
      fi
      touch -m -t "$time" "$file"
    done
    

    This accepts specific files as arguments or else updates each git-controlled file in the current directory or its children. This is done in a manner that permits spaces and even line breaks in filenames since git ls-files -z outputs a null-terminated file list and xargs -0 parses null-terminated lists into arguments.

    This will take a while if you have a lot of files.

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

Sidebar

Related Questions

Does anyone know if there is way to get the sender and the eventarguments
Does anyone know if there's a way to get Eclipse to do a Save
Is there any way to know if I'm compiling under a specific Microsoft Visual
Is there a way to know the main/calling request in an httpmodule? I only
Is there a way to know and output the stack size needed by a
Is there a way to know the number of test methods in a test
I have two keyboards connected to my PC, is there any way to know
There is a way to know the flash player version installed on the computer
does anyone know is there a way to implement Windows Live ID authentication into
Is there a built-in way to know if a given session variable is a

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.