]> git.phdru.name Git - git-scripts.git/blob - set-commit-date.py
70e393296053605689794d6aae43a7df67c7806d
[git-scripts.git] / set-commit-date.py
1 #! /usr/bin/env python
2
3 # Find commit date/time for every commit, list files in the commit
4 # and set the file's modification time to the date/time of the latest commit.
5
6 # Adapted from https://git.wiki.kernel.org/index.php/ExampleScripts#Setting_the_timestamps_of_the_files_to_the_commit_timestamp_of_the_commit_which_last_touched_them  # noqa
7
8 import os
9 import subprocess
10
11 separator = '----- GIT LOG SEPARATOR -----'
12
13 git_log = subprocess.Popen(['git', 'log', '-m', '--first-parent',
14                             '--name-only', '--no-color',
15                             '--format=%s%%n%%ct' % separator],
16                            stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
17 filenames = set()
18 # stages: 1 - start of commit, 2 - timestamp, 3 - empty line, 4 - files
19 stage = 1
20 while True:
21     line = git_log.stdout.readline().strip()
22     if (stage in (1, 4)) and (line == separator):  # Start of a commit
23         stage = 2
24     elif stage == 2:
25         stage = 3
26         time = int(line)
27     elif stage == 3:
28         if line == separator:  # Null-merge (git merge -s ours), no files
29             stage = 2
30             continue
31         stage = 4
32         assert line == '', line
33     elif not line:
34         break
35     elif stage == 4:
36         filename = line
37         if filename not in filenames:
38             filenames.add(filename)
39             if os.path.exists(filename):
40                 os.utime(filename, (time, time))
41     else:
42         raise ValueError("stage: %d, line: %s" % (stage, line))
43
44 git_log.wait()
45 git_log.stdout.close()