Open5

Gitコマンドメモ

4時4時

チェックアウトしたブランチにマージされたブランチをまとめて削除する

 git fetch -p && git branch --merged | grep -v '*' | xargs git branch -d
4時4時

別ブランチの特定のコミットを変更として取り込む

git cherry-pick --no-commit <commit_hash>
4時4時

ステージに上がっているtsxファイルに対してLintをかける

git diff --name-only --cached --diff-filter=ACM | grep '\.tsx\?$' | xargs npx eslint --fix