Open10

忘れがちなgitコマンドをまとめたい

muhiro_muhiro_
git fetch origin
git reset --hard origin/main

ローカルをリモートに強制一致させる

muhiro_muhiro_
git fetch -p

ローカルのリモートブランチ( git branch -a )をリモートリポジトリと合わせる

muhiro_muhiro_
git config --global alias.graph 'log --graph --date-order -C -M --pretty=format:"<%h> %ad [%an] %Cgreen%d%Creset %s" --all --date=short'

git graphコマンドを追加する

muhiro_muhiro_
git update-index --skip-worktree hote.txt

特定のファイルの変更を無視する

git update-index --no-skip-worktree hote.txt

無視したファイルを元に戻す

git ls-files -v | grep ^s

無視したファイルの一覧を表示する