전체 글
tree 만들기
http://mama.indstate.edu/users/ice/tree/ The Tree Command for Linux Homepage The Tree Command for Linux Homepage Description: Tree is a recursive directory listing command that produces a depth indented listing of files, which is colorized ala dircolors if the LS_COLORS environment variable is set and output is to tty. Tree has bee mama.indstate.edu 에서 다운을 해준다 파일로 들어가 make 파일에 설치하는 tree 실행 make ..
tree shell code
https://osxdaily.com/2016/09/09/view-folder-tree-terminal-mac-os-tree-equivalent/ alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
나만의 협업 git commit
파일 .gitconfig #file .gitconfig [commit] template = ~/.gitmessage 파일 .gitmessage ## (이모티콘) [타입]: 형식으로 작성하며 제목은 최대 50글자 정도로만 입력 ### 제목 끝에 마침표 금지, 어느 기술 혹은 작업을 했는지 작성 🚀 [feat]: 제목 ### 제목과 본문의 구분을 위한 빈 줄 ## (이모티콘) or [타입]: 본문(추가 설명) 본문은 영문 기준 72자마다 줄 바꾸기 ### 작성(무엇을 했는지 명확하게 작성) - ✅ : OOO 완료 ### 본문과 꼬릿말의 구분을 위한 빈 줄(필요시 밑에 주석 제거) # ## 꼬릿말(footer) 작성(필요시 밑에 주석 제거 후 작성) # # ----- 타입 설명 ----- ## 제목 ### 🎉..