ummahusla
Follow
✌️
Check my digital garden (edvins.io)
Highlights
Pinned Loading
-
-
Codecademy-Exercise-Answers
Codecademy-Exercise-Answers Public🎓 Codecademy.com exercise answers
-
Git overwrite branch with another br...
Git overwrite branch with another branch 1# overwrite master with contents of feature branch (feature > master)
2git checkout feature # source name
3git merge -s ours master # target name
4git checkout master # target name
5git merge feature # source name
-
Vim Cheat Sheet
Vim Cheat Sheet 1## Modes
2**Vim** has two modes insertion mode and command mode. The editor begins in command mode, where the cursor movement and text deletion and pasting occur. Insertion mode begins upon entering an insertion or change command. **`[ESC]`** returns the editor to command mode (where you can quit, for example by typing **`:q!`**). Most commands execute as soon as you type them except for "colon" commands which execute when you press the ruturn key.
34## Quitting
5* **`:x`** Exit, saving changes <br/>
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.