2

我想提交一个带有自定义日期的文件。

到目前为止,我已经创建了一个 Commit 对象,但我不明白如何将它绑定到一个 repo。

from git import *
repo = Repo('path/to/repo')
comm = Commit(repo=repo, binsha=repo.head.commit.binsha, tree=repo.index.write_tree(), message='Test Message', committed_date=1357020000)

谢谢!

4

4 回答 4

4

好吧,我找到了解决方案。

我不知道,但我必须提供所有参数,否则 Commit 对象在尝试序列化时会抛出 BadObject 异常。

from git import *
from time import (time, altzone)
import datetime
from cStringIO import StringIO
from gitdb import IStream

repo = Repo('path/to/repo')

message = 'Commit message'

tree = repo.index.write_tree()
parents = [ repo.head.commit ]

# Committer and Author
cr = repo.config_reader()
committer = Actor.committer(cr)
author = Actor.author(cr)

# Custom Date
time = int(datetime.date(2013, 1, 1).strftime('%s'))
offset = altzone
author_time, author_offset = time, offset
committer_time, committer_offset = time, offset

# UTF-8 Default
conf_encoding = 'UTF-8'

comm = Commit(repo, Commit.NULL_BIN_SHA, tree, 
      author, author_time, author_offset, 
      committer, committer_time, committer_offset,
      message, parents, conf_encoding)

创建提交对象后,必须放置适当的 SHA,我不知道这是如何完成的,但对 GitPython 源代码的一些研究让我得到了答案。

stream = StringIO()
new_commit._serialize(stream)
streamlen = stream.tell()
stream.seek(0)

istream = repo.odb.store(IStream(Commit.type, streamlen, stream))
new_commit.binsha = istream.binsha

然后将提交设置为 HEAD 提交

repo.head.set_commit(new_commit, logmsg="commit: %s" % message)
于 2013-01-17T23:31:31.257 回答
3

一个更简单的解决方案,它避免了手动创建提交对象(如果您也想添加文件,还可以手动创建新索引):

from git import Repo, Actor # GitPython
import git.exc as GitExceptions # GitPython
import os # Python Core


# Example values
respository_directory = "."
new_file_path = "MyNewFile"
action_date = str(datetime.date(2013, 1, 1))
message = "I am a commit log! See commit log run. Run! Commit log! Run!"
actor = Actor("Bob", "Bob@McTesterson.dev" )

# Open repository
try:
    repo = Repo(respository_directory)
except GitExceptions.InvalidGitRepositoryError:
    print "Error: %s isn't a git repo" % respository_directory
    sys.exit(5)

# Set some environment variables, the repo.index commit function
# pays attention to these.
os.environ["GIT_AUTHOR_DATE"] = action_date
os.environ["GIT_COMMITTER_DATE"] = action_date

# Add your new file/s
repo.index.add([new_file_path])

# Do the commit thing.
repo.index.commit(message, author=actor, committer=actor)
于 2015-02-17T13:34:43.050 回答
1

您可以commit_date在提交时设置。

r.index.commit(
    "Initial Commit",
    commit_date=datetime.date(2020, 7, 21).strftime('%Y-%m-%d %H:%M:%S')
)
于 2020-07-21T07:46:51.117 回答
1

我还将指定的日期/时间用于提交目的。在我的情况下,经过长时间的研究,我发现,你必须datetime按照 GitPython 建议的方式提供非 ISO 格式,也不是timestamp格式。它实际上是在制造错觉,因为它自己的“解析”应该是标准的python格式。

没有。您必须以 git 本身可以理解的格式提供它。

例如:

# commit_date is your specified date in datetime format
commit_date_as_text = commit_date.strftime('%Y-%m-%d %H:%M:%S %z')
git_repository.index.commit(commit_message, author=commit_author, commit_date=commit_date_as_text)

例如,您可以在 StackOverflow 上的另一个主题中找到接受的格式列表。

于 2020-06-18T08:56:50.620 回答