mirror of
https://github.com/denisidoro/navi
synced 2024-11-10 14:04:17 +00:00
commit
2993608739
5 changed files with 72 additions and 0 deletions
20
cheats/docker-compose.cheat
Normal file
20
cheats/docker-compose.cheat
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Builds, (re)creates, starts, and attaches to containers for all services
|
||||
docker-compose up
|
||||
|
||||
# Builds, (re)creates, starts, and dettaches to containers for all services
|
||||
docker-compose up -d
|
||||
|
||||
# Builds, (re)creates, starts, and attaches to containers for a service
|
||||
docker-compose up -d <service_name>
|
||||
|
||||
# Builds, (re)creates, starts, and dettaches to containers for a service
|
||||
docker-compose up -d <service_name>
|
||||
|
||||
# Print the last lines of a service’s logs
|
||||
docker-compose logs --tail 100 <service_name> | less
|
||||
|
||||
# Print the last lines of a service's logs and following its logs
|
||||
docker-compose logs -f --tail 100 <service_name>
|
||||
|
||||
# Stops containers and removes containers, networks created by up
|
||||
docker-compose down
|
|
@ -36,5 +36,11 @@ docker exec -it <container_id> bash
|
|||
# Print the last lines of a container’s logs
|
||||
docker logs --tail 100 <container_id> | less
|
||||
|
||||
# Print the last lines of a container's logs and following its logs
|
||||
docker logs --tail 100 <container_id> -f
|
||||
|
||||
# Create new network
|
||||
docker network create <network_name>
|
||||
|
||||
$ image_id: docker images --- --headers 1 --column 3
|
||||
$ container_id: docker ps --- --headers 1 --column 1
|
|
@ -80,4 +80,19 @@ navi fn url::open 'https://github.com/pulls?&q=author:<user>+is:open+is:pr'
|
|||
git fetch origin pull/<pr_number>/head:pr/<pr_number> \
|
||||
&& git checkout pr/<pr_number>
|
||||
|
||||
# Add a new module
|
||||
git submodule add <repository> [<path>]
|
||||
|
||||
# Update module
|
||||
git submodule update --init
|
||||
|
||||
# Update module without init
|
||||
git submodule update
|
||||
|
||||
# Pull all submodules
|
||||
git submodule foreach git pull origin master
|
||||
|
||||
# Update all submodules
|
||||
git submodule update --init --recursive
|
||||
|
||||
$ branch: git branch | awk '{print $NF}'
|
||||
|
|
20
cheats/npm.cheat
Normal file
20
cheats/npm.cheat
Normal file
|
@ -0,0 +1,20 @@
|
|||
# initial new package
|
||||
npm init
|
||||
|
||||
# initial immediately a new package
|
||||
npm init -y
|
||||
|
||||
# install all dependencies packages
|
||||
npm install
|
||||
|
||||
# install all dev dependencies packages
|
||||
npm install --save-dev
|
||||
|
||||
# install a specified package
|
||||
npm install <package_name>
|
||||
|
||||
# install a specified dev package
|
||||
npm install <package_name> --save-dev
|
||||
|
||||
# install globally a specified package
|
||||
npm install <package_name> -g
|
11
cheats/nvm.cheat
Normal file
11
cheats/nvm.cheat
Normal file
|
@ -0,0 +1,11 @@
|
|||
# install a specified version of node
|
||||
nvm install <version>
|
||||
|
||||
# list available versions
|
||||
nvm ls-remote
|
||||
|
||||
# use installed node's version
|
||||
nvm use <version>
|
||||
|
||||
# set a node's version as default
|
||||
nvm alias default <version>
|
Loading…
Reference in a new issue