CheetSheet - Will be updated

Removes nodejs from linux:
sudo apt-get remove nodejs
Install node.js on linux ubuntu:
https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-16-04 
Install nvm globally with
wget -qO- https://raw.githubusercontent.com/xtuple/nvm/master/install.sh | sudo bash


GIT:
1) Branch graph and commit history

git log --pretty=format:"%h %s" --graph

DOCKER:

# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)

Komentarze

Popularne posty z tego bloga

[c++] Lista wskaznikowa

[c++] słowniki - haszowanie - haszowanie otwarte

[ANSI C][LINUX] Procesy Potomne: fork