Development/Git

    Gitmoji를 사용해보자!

    Gitmoji를 사용해보자!

    Gitmoji는 뭔가요? Git Resository에 커밋 로그가 많이 쌓이다 보면, 한 눈에 내용을 파악하 어려운 경우가 많다. 이렇게 수 많은 커밋로그를 조금 더 쉽게 파악하는데 도움이 주는 Gitmoji를 소개하고자 한다. Gitmoji는 Git + Emoji를 합친 것으로, Git에 Commit할때, message에 이모티콘을 편하게 사용할 수 있도록 도와준다. '굳이 사용할 필요가 있어?' 라고 생각할 수 있지만, 커밋 로그에 이모지를 활용한다면 commit history를 한 눈에 알아보기 유용하다. (물론 이뻐서 쓰는 이유가 더 클 수 있다.) Gitmoji 사용방법 Web 브라우저에서 사용하기​ https://gitmoji.dev/ gitmoji :truck: Move or rename r..

    Git Merge 종류

    Git Merge 종류

    Merge 종류 Github에서는 세 종류의 Merge Button이 있다. 그 종류는 아래와 같다. Merge Commit All commits from this branch will be added to the base branch via a merge commit. Squash and Merge The (n) commits from this branch will be combined into one commit in the base branch. Rebase and Merge The (n) commits from this branch will be rebased and added to the base branch. 아래 명령을 통해 master branch에서 test-branch를 checkout..