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

Possible Duplicate: Get variable name. javascript “reflection” Is there a way to know the
Is there a way to get PHP-like print_r(object) funcionality in iPython? I know I
Is there a way to get individual ant tasks to run quietly? I know
Is there any way to get RoleId without get directly from DB?, I know
As far as I know, there's no way to get url hash in a
Is there any way to know in Servlet is JS is enable or not
Is there a way to know where is set a given PHP config property?
Is there a way to know if Visual C++ 2008 SP1 Redistributable Package is
is there a way to know when an object will be disposed by GC?
Is there any way to know for events when move a window with window.open?.

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.