본문 바로가기

Tools for Dev69

A successful git branching model in GIT - GIT 브렌치의 효율적인 운영방안에 대한 고찰 오역이나 오탈자에 대한 것은 덧글활용을 부탁드리며, 내용수정은 허락하지 않습니다. 각자 나름대로 git의 branch을 개성있게 사용하고 있겠지만, 아래 링크된 곳에서는 저자가 여러 프로젝트를 진행하면서 사용했던 브렌치들을 하나의 모델로 정형화하여 잘 설명하고 있다. 그 중에 branch활용방안에 대한 내용들을 번역 및 요약해본다. Refer : http://nvie.com/posts/a-successful-git-branching-model/ The main branches master 기본적으로 git에서 생성되는 branch. 운용 기준 HEAD부분은 제품으로 나갈만큼 안정화되어 있어야 한다. develop 개발시 이용하는 branch 운용 기준 최근 개발 현황이 HEAD에 담겨야 한다. 다음 re.. 2023. 5. 9.
Make 에 대한 모든 것 목차 make 소개 Makefile 기본편 기본구조 Makefile.win (CYGWIN) Makefile 응용편 Macro Dependency Command Operation make 소개 make 정의(by man) : GNU make utility to maintain groups of programs. The purpose of the make utility is to determine automatically which pieces of a large program need to be recompiled, and issue the commands to recompile them. make 명령시 참조 파일 : 현재 디렉토리 내의 GNUmakefile, Makefile, makefile. Make.. 2023. 5. 9.
GIT branch 삭제 : local branch & remote branch Local Branch 삭제 $ git branch -d Remote Branch 삭제 $ git push -d 보통 remote_name은 origin 을 사용하므로 아래의 형태가 될 것이다. $ git push -d origin 2019. 11. 30.
iTerm Tips How to change encoding typePress ⌘ + i in the iTerm window.Click ‘Terminal’ tab.Select what you want in the ‘Character Encoding’ field. 2014. 7. 3.