Home
Kunyi's Blog
Cancel

Git 101

This blog is a detailed summary of the Pro Git book. After I read the book, I made a summary of what commands are leveraged in practice frequently. Getting Started What is Git Git is a version c...

SQL Command 101

SQL Query Commands Fundamentals select all rows and columns from table tbl SELECT * FROM tbl; select column c1, c2 and all rows from table tbl SELECT c1, c2 FROM tbl; DISTINCT: search for ...

Bash Command 101

vim link: https://www.keycdn.com/blog/vim-commands There are two modes in vim command: command mode and insert mode. We will go through some frequent usages. Basic commands :help [keyword]: ...