Git
https://gyazo.com/98a2e43ac8f3461dc7b9c55a6be438fe
switch 先の branch を interactive に選ぶ
$ git branch --format '%(refname:lstrip=2)' | fzy | xargs -t git switch
conflict を解決する時に merge 元 branch の變更を採用する
$ git status -bs | ag '^UU' | awk '{print $2}' | xargs -t git checkout --ours
merge 元 branch
git switch feature/x; git merge --no-ff main ならば feature/x branch
git rebase -i main ならば main branch
$ gh repo view -b $(git rev-parse --short HEAD) -w