mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Correct wrong datetime format for git (#7689)
This commit is contained in:
		| @@ -61,7 +61,7 @@ type CommitTreeOpts struct { | |||||||
|  |  | ||||||
| // CommitTree creates a commit from a given tree id for the user with provided message | // CommitTree creates a commit from a given tree id for the user with provided message | ||||||
| func (repo *Repository) CommitTree(sig *Signature, tree *Tree, opts CommitTreeOpts) (SHA1, error) { | func (repo *Repository) CommitTree(sig *Signature, tree *Tree, opts CommitTreeOpts) (SHA1, error) { | ||||||
| 	commitTimeStr := time.Now().Format(time.UnixDate) | 	commitTimeStr := time.Now().Format(time.RFC3339) | ||||||
|  |  | ||||||
| 	// Because this may call hooks we should pass in the environment | 	// Because this may call hooks we should pass in the environment | ||||||
| 	env := append(os.Environ(), | 	env := append(os.Environ(), | ||||||
|   | |||||||
| @@ -249,7 +249,7 @@ func (t *TemporaryUploadRepository) GetLastCommitByRef(ref string) (string, erro | |||||||
|  |  | ||||||
| // CommitTree creates a commit from a given tree for the user with provided message | // CommitTree creates a commit from a given tree for the user with provided message | ||||||
| func (t *TemporaryUploadRepository) CommitTree(author, committer *models.User, treeHash string, message string) (string, error) { | func (t *TemporaryUploadRepository) CommitTree(author, committer *models.User, treeHash string, message string) (string, error) { | ||||||
| 	commitTimeStr := time.Now().Format(time.UnixDate) | 	commitTimeStr := time.Now().Format(time.RFC3339) | ||||||
| 	authorSig := author.NewGitSig() | 	authorSig := author.NewGitSig() | ||||||
| 	committerSig := committer.NewGitSig() | 	committerSig := committer.NewGitSig() | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user