Git 커밋 메시지 수정하는 방법 - git rebase -i 로 이전 커밋 변경
명령줄에서, 수정하고자 하는 커밋이 포함된 리포지토리로 이동. 텍스트 편집기에서 마지막 n 개 커밋의 목록을 표시하려면 git rebase -i HEAD ~ n 명령 입력. # Displays a list of the last 3 commits on the current branch $ git rebase -i HEAD~3 아래의 sh...
younggyo@dev:~/knowledge-base$ find . -type f | sort -r
개발하며 마주친 문제와 해결 과정을 오래 꺼내 볼 수 있는 텍스트로 남깁니다.
명령줄에서, 수정하고자 하는 커밋이 포함된 리포지토리로 이동. 텍스트 편집기에서 마지막 n 개 커밋의 목록을 표시하려면 git rebase -i HEAD ~ n 명령 입력. # Displays a list of the last 3 commits on the current branch $ git rebase -i HEAD~3 아래의 sh...
12100번: 2048-Easy 코드 gitHub static class SolutionImpl implements Solution { static class GameBoard { public int[][] cells = new int[boardSize][boardSize]; void rotate90() { ...