Git - changing the committed comment less than 1 minute read Basic steps. git log --pretty=oneline -10 git rebase -i xxxx -> change 'pick' to 'reword' git commit git rebase --continue details is the following url. https://help.github.com/articles/changing-a-commit-message/ Share on Twitter Facebook LinkedIn Previous Next
C++ - Class template argument deduction guide less than 1 minute read A deduction guide tells the compiler how to deduce template arguments when you construct an object without explicitly specifying them.