标签: git
我用
git commit -m“updata some files”
提交我的项目的更改,但我写错误词'updata',我想将其更改为'更新',所以我该怎么办?
答案 0 :(得分:1)
如果您尚未将提交推送到远程,则可以--amend运行git commit --amend -m 'updated the files: list of files'
--amend
git commit --amend -m 'updated the files: list of files'
文档: http://git-scm.com/book/en/Git-Basics-Undoing-Things