📘

[Memo] ちょっと経つと忘れる、その時はよく使うコマンド一覧

2023/02/25に公開

これは?

間が空くとつい忘れてググってしまうコマンドたちの置き場です。(適宜更新予定)

Node

  • npm i xxx
  • npm ls --depth 0
  • npm audit
  • npm audit fix

nodenv

  • nodenv install -l
  • nodenv install xxx
  • nodenv local xxx

Python

  • pip list
  • pip list -o
  • pip install -U xxx
  • pip install -U pip
  • pip show xxx

Pipenv

  • pipenv --python xxx
  • pipenv install xxx
  • pipenv install -r ./requirements.txt

Git

  • git commit -a --amend --no-edit
  • git remote add xxx
  • git rebase -i xxx

alias登録系

  • git log --oneline --all --graph --decorate --date-order -n 10
  • git branch --merged | grep -vE 'main|develop|release|master' | xargs git branch -d

rebase

コマンド 説明
p そのまま
r メッセージ変更
e コミット内容の変更
s 直前pickコミットに統合。メッセージも統合。
f 直前pickコミットに統合。メッセージは破棄。

Homebrew

  • brew update
  • brew list
  • brew outdated
  • brew upgrade xxx

Docker

docker build . -t xxx
docker run -it -d --rm xxx
docker ps -a
docker images
docker rm xxx(container name)
docker rmi xxx(image name)

Discussion