如何在GitHub中更改提交消息,请检查标记的部分

时间:2019-09-01 20:03:55

标签: github

enter image description here enter image description here

我正在尝试在Github上编辑此描述,但是找不到任何编辑按钮,当我使用GitHub Desktop上传该项目时,我键入了描述。 有关如何进行编辑的任何建议?

我希望提交消息为“基于DAX索引的项目” 如下所示。

我进入该屏幕现在该怎么办?

2 个答案:

答案 0 :(得分:0)

实际上,您想更改提交消息,这不是您问题的适当标题。这已经是这里的答案了:

Editing the git commit message in GitHub

GitHub的操作说明:

  1. 在命令行上,导航到包含要修改的提交的存储库。
  2. 键入git commit --amend,然后按Enter。
  3. 在文本编辑器中,编辑提交消息并保存提交。
  4. 使用git push --force example-branch命令强制推送旧提交。

来源:https://help.github.com/articles/changing-a-commit-message/

答案 1 :(得分:0)

有很多方法可以用git重写历史记录。

  1. 使用git commit --amend更改您的最新日志消息。
  2. 使用git commit --amend对最新的提交进行修改。
  3. 使用git rebase合并提交并修改分支的历史记录。
  4. 与标准git rebase -i相比,
  5. git rebase对历史修改的控制更为精细。

来源-https://www.atlassian.com/git/tutorials/rewriting-history