Skip to content

Instantly share code, notes, and snippets.

View zpl-zak's full-sized avatar
📐

Dominik Madarász zpl-zak

📐
View GitHub Profile
@zpl-zak
zpl-zak / spacemacs-cheatsheet.txt
Created August 28, 2016 05:47 — forked from davoclavo/spacemacs-cheatsheet.md
Spacemacs cheatsheet
`emacs --daemon` to run in the background.
`emacsclient.emacs24 <filename/dirname>` to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
* Undo - `C-/`
* Redo - `C-?`
* Change case: 1. Camel Case : `M-c`
2. Upper Case : `M-u`
3. Lower Case : `M-l`
@zpl-zak
zpl-zak / git_submodules.md
Created August 25, 2016 05:26 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.