まとめ/Tips/チートシート
あまり知られていない便利な Git サブコマンド 4選 – Qiita
翻訳 あなたの知らない Git Tips | 見えないチカラ
Github で一番有名な Git Tips 集 – Qiita
複数人での Git 開発に便利な 3つのコマンド – Qiita
困ったときに使う git のコマンドまとめ | グランドリーム
大文字小文字を区別する/しない
参考:
Git を大文字小文字判別可能 (case-sensitive) にする方法 – Qiita
キャッシュをクリアする
$ git rm -r --cached .
参考:
.gitignore に記載したのに反映されない件 – Qiita
.gitignore が反映されない時の対応 – Qiita
Clear git local cache – Stack Overflow
コミットされたファイルの容量を計測する
git diff-tree
コマンドでファイル一覧を出力し、ヌル文字区切りに変換して du
コマンドで容量を計測する。
$ git diff-tree --no-commit-id --name-only -r 12345abce | xargs -I {} find '{}' -print0 | du -bc --files0-from=-
参考:
How to Sum Up the Size of Files Listed | Baeldung
How do I list all the files in a commit? – Stack Overflow
Git Tips
リポジトリ:
git-tips/tips: Most commonly used git tips and tricks – GitHub
isotai/git-tips: 最もよく使われる git の小技と裏技 – GitHub
git-tree コマンド
リポジトリ:
kosystem/git-tree: List Contents of Git in a Tree-Like Format – GitHub
入手:
参考: