Git强制提交和推送,当“什么都没提交”时

时间:2019-05-31 14:15:14

标签: git

我需要强制提交和推送文件,因为每次提交都会触发应用程序中的某些外部事件,这是我提交的文件与远程文件中的文件相同的时候 现在我开始了:

git automation commit -am "testing"

它给了我

On branch develop
Your branch is up-to-date with 'origin/develop'.
nothing to commit, working tree clean

它取消提交...
我如何强制提交和推送? 因此它将更新远程

中的文件

1 个答案:

答案 0 :(得分:2)

要添加空的提交... git commit --allow-empty -m "testing"。然后正常推动。

旁注,您可以通过其他方式来触发事件。这会弄乱您的历史记录。