파일명 대소문자 구분 여부
하나의 컴퓨터에서 계정 여러개 사용
- https://docs.github.com/ko/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-your-personal-account/managing-multiple-accounts
- https://velog.io/@yena-lena/하나의-PC에서-GitHub-여러개-계정-사용하기
- https://patrick-f.tistory.com/63#google_vignette
remote branch 동기화 방법
- https://flower0.tistory.com/310
- https://eddori.tistory.com/entry/원격브랜치와-로컬-동기화하기-부제-원격브랜치와-로컬에서-브랜치-조회-시-목록-다를-때
- local branch 생성과 함께 remote branch forward 하도록.
- $ git checkout -t <remote>/<branch>
- 기존 local branch가 remote branch forward 하도록.
- $ git branch --set-upstream-to=<remove branch> <local branch> git branch --set-upstream-to=origin/gcp HEAD git push origin HEAD:refs/for/production
강제 Revert (되돌리기)
'그 외' 카테고리의 다른 글
| [pgAdmin][Error] FATAL: connection requires a valid client certificate (0) | 2025.09.16 |
|---|---|
| [langchain] document loader (0) | 2025.09.15 |
| [JS] 제네레이터와 비동기 이터레이션 (0) | 2025.09.08 |
| [JS] 프라미스와 async, await 정리 (0) | 2025.09.08 |