C 언어
Cpp 언어
Kotlin
Android App
알고리즘
Git/CI/CD
[팁] git alias
.gitconfig 파일 내부에 alias 설정을 추가하여 복잡한 명령어를 단순화시킬 수 있다.

아래는 내가 사용하는 명령어들이다.

[alias]
    sync = !git fetch --all && git remote update --prune
    pushcurrent = !git push origin $(git symbolic-ref --short HEAD)

 

git sync : remote로부터 최신 소스 내용들을 모두 fetch하고(단 현재 브랜치에는 반영 안함), remote에서 제거된 브랜치들도 제거한다.
git pushcurrent : 일반적으로 git push 할 때 remote와 branch 를 설정해 주어야 하는데, remote를 origin으로, branch를 current branch로 설정하여 푸시해 주는 명령어이다. (주의 : remote가 origin이 아닐 땐 주의하자)


-