Git

Commands Install: winget install git Set up: git config --global user.name "User Name" git config --global user.email "email@email.com" Create a New Project: mkdir project cd project git init (initialise empty git repo in my folder (based on path) aka .git folder) ls -la (check my folder) Check “world status”: git status ...

11 min

NeoVim

Vim is a text editor which includes most commands from the Unix program “Vi” and many new ones. An overview of this manual can be found in the file “help.txt”, help.txt. It can be accessed from within Vim with the or key and with the :help command (just type “:help”, without the bars or quotes). The ‘helpfile’ option can be set to the name of the help file, in case it is not located in the default place. You can jump to subjects like with tags: Use CTRL-] to jump to a subject under the cursor, use CTRL-T to jump back. ...

3 min

Projects

0 min