Post/Code
Home
About
Uses
Now
VS Code, TypeScript 101, Emmet and delete branches in Git.
Launch VS Code from the command line |
Link
VS Code key binding for moving a line up or down is:
Alt + Up or Alt + Down
I started learning about TypeScript and the first step is:
npm install -g typescript
That the awesome Emmet is installed by default in VS Code |
Link
Are you a Git rookie like me? This is how you delete a branch on local:
git branch -d oldBranch01 oldBranch02 oldBranch03