get pull-request to local

Youngseo Kim·2022년 6월 12일
0

Git Commands

목록 보기
5/5
post-thumbnail

~/.gitconfig에 아래 라인 추가

origin, upstream 등 remote의 이름 중 PR을 가져올 레포의 이름으로 설정해야 한다.

[alias]
  pr  = "!f() { git fetch -fu ${2:-origin} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"
  pr-clean = "!git for-each-ref refs/heads/pr/* --format='%(refname)' | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done"
[alias]
  pr  = "!f() { git fetch -fu ${2:-upstream} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"
  pr-clean = "!git for-each-ref refs/heads/pr/* --format='%(refname)' | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done"
profile
Backend Engineer

0개의 댓글