Published at
Updated at
Reading time
1min
This post is part of my Today I learned series in which I share all my web development learnings.

Ashley Williams tweeted that !! in commit messages will be replaced with the last executed command.

It turns out this is nothing git specific but rather command line specific and there are a lot more:

  • !! - last command
  • !1 - first entry in history
  • !-1 - last entry in history
  • !ssh - last command starting with ssh
  • !:1 - first argument of last command

For the case of git this works only when using -m though. ;) If you want to read more about this Digital Ocean published a nice article on this topic.

History commands

Was this TIL post helpful?
Yes? Cool! You might want to check out Web Weekly for more quick learnings. The last edition went out 12 days ago.
Stefan standing in the park in front of a green background

About Stefan Judis

Frontend nerd with over ten years of experience, freelance dev, "Today I Learned" blogger, conference speaker, and Open Source maintainer.

Related Topics

Related Articles