2019-11-19-git-修改commit日期为之前的日期
title | author | date | CreateTime | categories |
---|---|---|---|---|
git 修改commit日期为之前的日期
|
lindexi
|
2019-11-19 08:53:16 +0800
|
2018-2-13 17:23:3 +0800
|
git
|
我在之前修改了一个文件,但是没有commit,现在我想要commit,日期为那天的日期
git 修改日期的方法很简单,因为有一个命令--date
可以设置 git 提交时间。
默认的 git 的提交时间会受到系统的时间的影响,如果想要系统的时间不会影响到 git 的提交时间,请使用本文的方式,自己指定提交的时间
使用git自定义时间的提交格式:
git commit --date="月 日 时间 年 +0800" -am "提交"
如果我要把日期修改为 2016.5.7 那么我可以使用下面代码
git commit --date="May 7 9:05:20 2016 +0800" -am "提交"
其中我希望大家知道的:
各个月份的缩写,不然每次都需要去百度一下
January, Jan.
February, Feb.
March, Mar.
April, Apr.
May, May.
June, Jun.
July, Jul.
August, Aug.
September, Sep.
October, Oct.
November, Nov.
December, Dec.
当然,如果你想写为程序,那么我还可以送你一点代码
new List<string>()
{
"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug",
"Sep","Oct","Nov","Dec"
};
如果需要使用 C# 调用 git ,可以使用我之前写过的代码:
public class GitControl
{
public GitControl(string fileDirectory)
{
FileDirectory = fileDirectory;
} /// <summary>
/// git的文件夹
/// </summary>
public string FileDirectory
{
set;
get;
} public string Branch
{
set;
get;
} public string Origin
{
set;
get;
} public string Add(string file = ".")
{
string str = "add " + file;
return Control(str);
} private string ConvertDate(DateTime time)
{
//1. 一月 January (Jan)2. 二月 February (Feb)
//3. 三月 March (Mar)
//4. 四月 April (Apr)
//5. 五月 May (May)
//6. 六月 June (Jun)
//7. 七月 July (Jul)
//8. 八月 August (Aug)
//9. 九月 September (Sep)
//10. 十月 October (Oct)
//11. 十一月 November (Nov)12. 十二月 December (Dec)
List<string> temp = new List<string>()
{
"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug",
"Sep","Oct","Nov","Dec"
}; //StringBuilder str = new StringBuilder();
// git commit --date = "月 日 时间 年 +0800" - am "提交" //git commit --date = "May 7 9:05:20 2016 +0800" - am "提交"
return $"--date=\"{temp[time.Month - 1]} {time.Day} {time.Hour}:{time.Minute}:{time.Second} {time.Year} +0800\" ";
} public string Commit(string str = null, DateTime time = default(DateTime))
{
string commit = " commit";
if (time != (default(DateTime)))
{
commit += " " + ConvertDate(time);
} if (string.IsNullOrEmpty(str))
{
if (time == default(DateTime))
{
time = DateTime.Now;
}
str = time.Year + "年" + time.Month + "月" +
time.Day + "日 " +
time.Hour + ":" +
time.Minute + ":" + time.Second;
}
commit += " -m " + "\"" + str + "\"";
//commit = FileStr() + commit;
return Control(commit);
} public string Push()
{
//git push origin master
if (string.IsNullOrEmpty(Branch))
{
Branch = "master";
} if (string.IsNullOrEmpty(Origin))
{
Origin = "origin";
string str = $"push {Origin} {Branch}";
return Control(str);
}
else
{
string str = $"push {Origin} {Branch}";
str= Control(str);
if (Origin != "origin")
{
Origin = "origin";
str += Control($"push {Origin} {Branch}");
}
return str;
}
} private string _gitStr = "git -C {0}"; private string FileStr()
{
return string.Format(_gitStr, FileDirectory) + " ";
} private string Control(string str)
{
str = FileStr() + str;
// string str = Console.ReadLine();
//System.Console.InputEncoding = System.Text.Encoding.UTF8;//乱码 Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false; //是否使用操作系统shell启动
p.StartInfo.RedirectStandardInput = true; //接受来自调用程序的输入信息
p.StartInfo.RedirectStandardOutput = true; //由调用程序获取输出信息
p.StartInfo.RedirectStandardError = true; //重定向标准错误输出
p.StartInfo.CreateNoWindow = true; //不显示程序窗口
p.StartInfo.StandardOutputEncoding= Encoding.UTF8;//Encoding.GetEncoding("GBK");//乱码
p.Start(); //启动程序 //向cmd窗口发送输入信息
p.StandardInput.WriteLine(str + "&exit"); p.StandardInput.AutoFlush = true;
//向标准输入写入要执行的命令。这里使用&是批处理命令的符号,表示前面一个命令不管是否执行成功都执行后面(exit)命令,如果不执行exit命令,后面调用ReadToEnd()方法会假死
//同类的符号还有&&和||前者表示必须前一个命令执行成功才会执行后面的命令,后者表示必须前一个命令执行失败才会执行后面的命令 //获取cmd窗口的输出信息
string output = p.StandardOutput.ReadToEnd();
output += p.StandardError.ReadToEnd(); p.WaitForExit(); //等待程序执行完退出进程
p.Close(); return output + "\r\n";
}
}
如果修改过程需要修改上一次提交的日期,可以添加 --amend
的参数,如果要修改不是上一次的提交,而是很久的提交,我暂时没找到如何做,如果你知道怎么做,请告诉我
本文用的时间是 RFC 2822 格式,这个格式的时间是 月 日 时间 年 +0800
而除了这个格式,还可以使用 ISO 8601 格式,如下面代码
2005-04-07T22:13:13
在 C# 可以使用 DateTime.UtcNow.ToString("s")
将时间输出
2019-11-19-git-修改commit日期为之前的日期的更多相关文章
- git 修改commit 的注释
git 修改commit 的注释 一:最新的一次提交 当你不小心,写错了提交的注视/信息,该如何处理呢.理论上,SCM是不应该修改历史的信息的,提交的注释也是. 不过在git中,其commit提 ...
- git 修改commit日期为之前的日期
我在之前修改了一个文件,但是没有commit,现在我想要commit,日期为那天的日期 git commit --date="月 日 时间 年 +0800" -am "提 ...
- [git]修改commit
git commit --amend 修改上一个的commit信息. git reset commit_id 修改commit,同时改变commit历史,可用于合并commit. git revert ...
- git修改commit message及vi编辑器的简单使用
1.修改commit信息 git commit --amend 2.进入vi编辑器修改 ‘i’进入insert模式,输入文字: ‘esc’回到命令模式,删除文字,移动光标: ‘:’进入底行模式,‘wq ...
- git 修改commit信息
可以使用 git commit --amend 修改上一次的提交信息. 操作示例 如下: git commit --amend 后会出现编辑界面,如下 可以在最上面红框的地方,修改要提交的信息,然后按 ...
- git修改commit说明
当发现说明写错了时,执行git commit --amend,然后修改说明即可.
- Git 修改commit message
1.git log --oneline -5 查看最近5次commit的简要信息,输出信息为:简短commitID commit_message,可以根据需要查看最近n次的提交 也可以git log ...
- cisco ssh实验--附带配置脚本-2019.11.19
cisco ssh实验
- 通过git rebase修改commit message
今天发现一个项目的git commit message中的单词拼错了,需要修改一下.但这样简单的修改,需要通过git rebase才能完成. 首先要git rebase到需要修改message的那个c ...
随机推荐
- Apache Flink 1.9重磅发布!首次合并阿里内部版本Blink重要功能
8月22日,Apache Flink 1.9.0 版本正式发布,这也是阿里内部版本 Blink 合并入 Flink 后的首次版本发布.此次版本更新带来的重大功能包括批处理作业的批式恢复,以及 Tabl ...
- ECS应用管理最佳实践
前言 即使在CloudNative发展如火如荼的当下,ECS应用(直接将应用部署在ECS上,不使用容器)仍然占了相当大的比重,原因主要在于相对容器化应用,ECS应用由于不需要容器的运行时环境和类似K8 ...
- linux下文件操作之cp和mv
Linux CP文件夹略过目录的解决 root@QGY:/home/qgy# cp image/newimage_raw /mnt/4T/qin/cp: 略过目录'image/newimage_raw ...
- 异步 I/O 和事件驱动
异步IO(asynchronous I/O) 首先来理解几个容易混淆的概念,阻塞IO(blocking I/O)和非阻塞IO(non-blocking I/O),同步IO(synchronous I/ ...
- 2019.10.22 csp-s模拟测试82 反思总结
重来重来,刚刚就当什么都没发生 今天的题属实有些迷惑,各种意义上…总之都很有难度吧.不满归不满,这套题的确不是什么没有意义的题目. 为了考验自己的学习能力记忆力,决定不写题解,扔个代码完事了 其实是懒 ...
- Python 数据文件操作——写出数据
- 【CodeVS】2750 心系南方灾区
2750 心系南方灾区 时间限制: 1 s 空间限制: 2000 KB 题目等级 : 青铜 Bronze 题目描述 Description 现在我国南方正在承受百年不遇的大雪.冻雨灾害.北京市已经开始 ...
- 【产品经理】产品经理不懂API接口是什么,怎么和程序员做朋友?
接口不是技术经理来写吗?没接过它,一脸不清楚地节奏 开放即共享,是互联网的一个重要属性和精神.它是一种服务模式,一个特殊的产品,目前较大规模的互联网企业都有自己的开放平台. 如果把自己局限为一个功能产 ...
- LintCode刷题笔记-- CoinsInLine
标签: 动态规划 问题描述: There are n coins with different value in a line. Two players take turns to take one ...
- Python运用于数据分析的简单教程
Python运用于数据分析的简单教程 这篇文章主要介绍了Python运用于数据分析的简单教程,主要介绍了如何运用Python来进行数据导入.变化.统计和假设检验等基本的数据分析,需要的朋友可以参考下 ...