자식 별칭은 무엇입니까?

소개



내 별칭을 복사하기 위해 내.gitconfig를 공유하라는 요청을 여러 번 받았습니다.

두 가지 이유로 git 별칭을 사용합니다.
  • 생산성 향상.
  • 흥미로운git 명령을 기억하고 이를 통해 학습합니다.

  • 내 Gitconfig



    다음은 참조용으로 내 ~/.gitconfig 파일에 포함된 내 별칭입니다.

    [alias]
        a = add .
        aliases = config --get-regexp alias
        alias = ! git config --get-regexp ^alias\. | sed -e s/^alias.// -e s/\ /\ $(printf "\043")--\>\ / | column -t -s $(printf "\043") | sort -k 1
        ap = add . -p
        addups = remote add upstream
        bd = branch -d
        bi = bisect
        bl = branch -l
        blr = branch -a
        br = branch -r
        ca = commit -a
        cam = commit -a -m
        ci = commit -m
        cia = commit --author='imjoseangel <[email protected]>' -m
        cm = commit
        co = checkout
        colast = checkout -
        comments = commit -m 📒Comments
        count = rev-list --count devel
        db = branch -D
        forgetAbout = rm --cached
        formatting = commit -m 💅Formatting
        fp = fetch -p
        grep = grep -F
        laf = fsck --lost-found
        last = log -1 HEAD
        latest = log -5 --pretty --oneline
        ls = ls-files --others --exclude-standard -z
        mend = commit --amend
        nb = checkout -b
        op = gc --prune=now --aggressive
        pdo = push -d origin
        pf = push --force-with-lease
        po = push origin
        pou = push --set-upstream origin
        pr = pull --rebase
        pror = remote prune origin
        prud = pull --rebase upstream devel
        prum = pull --rebase upstream main
        prune = remote update --prune
        ptag = push origin --tags
        ra = rebase --abort
        rc = rebase --continue
        refactor = commit -m 👷Refactor
        remotes = remote -v
        renb = branch -m
        rh = reset --hard
        rhh = reset --hard HEAD
        ri = rebase -i upstream/devel
        rim = rebase -i upstream/main
        rl = reflog
        rp = repack -ad
        s = status -s
        search = rev-list --all
        sh = show
        short = shortlog -sn
        sign = commit --amend --no-edit --signoff
        st = status
        stashes = stash list
        tests = commit --allow empty -m ✅Tests
        tuto = help tutorial
        tuto2 = help tutorial-2
        unstash = stash pop
        vc = clean -dfx
        wow = log --all --graph --decorate --oneline --simplify-by-decoration
    

    git alias에 추가한 후 .gitconfig를 실행하면 모든 별칭 목록이 참조 목록으로 표시됩니다.

    자세한 정보를 얻으려면 git help <command or alias> 를 실행하십시오. 예를 들어:

    git help st
    'st' is aliased to 'status'
    



    git help status
    


    초보자에게 흥미로운 두 가지 별칭이 있습니다.

    git tuto
    git tuto2
    


    다양한 접근 방식에 대한 의견과 제안은 언제나 환영합니다.

    좋은 웹페이지 즐겨찾기