소스 검색

update git branches

pull/1/head
10sr 10 년 전
부모
커밋
1b3f570b1b
1개의 변경된 파일9개의 추가작업 그리고 6개의 파일을 삭제
  1. +9
    -6
      setup.sh

+ 9
- 6
setup.sh 파일 보기

@@ -137,12 +137,15 @@ setup_gitconf(){
$_gc alias.addi "add -i"
$_gc alias.clean-p "!test -z \"\$(git status -s -uno)\""

# alias open-branch and close-branch, which can be useful for topic branching
$_gc alias.open-branch "checkout -b"
$_gc alias.close-branch \
"!sh -cx 'git stash && git checkout master && git merge --no-ff -'"
$_gc alias.open "open-branch"
$_gc alias.close "close-branch"
# alias open-branch and close-branch, which will be useful for topic branch
# workflow
_git_open_branch="checkout -b"
_git_close_branch="!sh -cx 'git stash && \
git checkout master && git merge --no-ff -'"
$_gc alias.open-branch "$_git_open_branch"
$_gc alias.close-branch "$_git_close_branch"
$_gc alias.o "$_git_open_branch"
$_gc alias.c "$_git_close_branch"

$_gc alias.todo "grep -E -i 'todo:|note:|fixme:'"



불러오는 중...
취소
저장