From: Mojca M. <moj...@gm...> - 2018-03-22 03:04:34
|
On 22 March 2018 at 03:39, sfeam via gnuplot-beta wrote: > > I wish there was a way to edit commit messages afterwards. > That is the thing I dislike the about about git so far. > You cannot go back and fix typos or errors in the commit > messages. You can. "git commit --amend" for the latest message "git rebase -i HEAD~<N>" for <N> latest commits You can arbitrarily use these before pushing the changes to the server. Once they are on the server you can still do this (with force pushing), but you may cause inconvenience to other users who might have synced the sources in the meantime, so it's not recommended. Mojca |