Post/Code

HomeAboutUsesNow

Generate CSR, VS Code Multi-cursor and Git Stash.

  • Generate a CSR from the command line by:
    openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr
  • VS Code keybinding for multi-cursor select is:
    CMD + Shift + L
  • Git stash! | Link
  • git stash
  • git stash list
  • git stash pop
  • git stash apply
  • git stash apply stash@{0}
  • git stash drop stash@{0}