본문 바로가기

Front-End/git15

가장 마지막 commit 수정 git commit --amend 들어간 뒤, i 키를 눌러서 INSERT 모드로 진입 방향키로 수정할 위치까지 커서를 옮긴 뒤, 수정한다. 글자를 수정했다면 esc 키를 누르고 :wq를 입력한다.(저장, 종료 커멘드. 콜론을 반드시 입력하기) 2023. 4. 4.
좋은 git commit 메시지를 위한 영어 사전(링크) https://blog.ull.im/engineering/2019/03/10/logs-on-git.html 2023. 4. 3.
git에서 특정 브랜치만 clone하는 방법 https://www.slipp.net/questions/577 git에서 특정 브랜치만 clone하는 방법 git을 사용하다 브랜치 전체를 clone하지 않고 특정 브랜치 하나만 clone하는 것이 가능하다. 특히 브랜치가 많은 경우 이 방법을 사용할 수 있다. git clone -b {branch_name} --single-branch {저장소 URL} ex) git www.slipp.net git clone -b {branch_name} --single-branch {저장소 URL} 2023. 3. 16.
The current branch feature has no upstream branch. fatal: The current branch feature has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin featuregit push --set-upstream origin feature 업스트림 저장소에 feature이라는 브랜치가 없으니 해당 명령어로 업스트림에 feature이라는 브랜치를 생성하라는 의미이다. 커맨드 라인에서 알려주는 대로 복사 붙여넣기 하면 해결할 수 있다. 2023. 3. 16.
Cannot find module '모듈명' or its corresponding type declarations. ts git 에서 clone 했을 때 처음 볼 수 있는 빨간줄들 npm install로 패키지를 설치한다~! npm install 2023. 3. 14.
github 반드시! 작업 전에 해야할 것 커밋 하기 전에 브랜치를 만들 것~!!! git checkout main git pull git checkout -b [브랜치명] 커밋 메시지 작성 및 커밋 git push 1. Issue 작성하기! issue 1개당 branch는 1개! - [ ] 내용입력 2. branch 생성 및 이동 git checkout -b [branch 이름] : 커밋 내역 조회 git log 커밋 한개 삭제 git reset HEAD^ git checkout main git pull 2023.01.04(수) 커밋을 잘못 되돌렸을 때 다시 되돌리는 방법 git reflog 를 통해 현재까지의 history를 확인하고 되돌아갈 커밋 아이디를 찾는다. 그옆의 HEAD@{번호}를 봐야 함. git r.. 2022. 12. 17.