コンテンツにスキップ

便利な Git コマンド

新規ファイルをトラック

git add -N

差分を個別にトラック

git add -p

変更があったファイルだけトラック

git add -u

削除済みのリモートブランチに追従する

git fetch -p

全てのブランチの最新の履歴を取得

1
2
3
4
git clone --no-single-branch

# depth 1 で最新の履歴のみ取得
git clone --depth 1 --no-single-branch

git のコマンドではないが、マージ済みのブランチ削除 git-sweep

git bisect で問題箇所を特定する https://qiita.com/usamik26/items/cce867b3b139ea5568a6