[Git] 검색하기 귀찮아서 모아둔 명령어
·
공통
1. warning: in the working copy of 어쩌구 오류날 때- 윈도우 버전git config --global core.autocrlf true2. 새 레파지토리에 기존 파일 연동할 때git remote add origin "원격저장소 https"git pull origin maingit add --all 또는 git add .git commit -m "커밋할 내용"git push origin main 출처https://cocoon1787.tistory.com/728 [Git] "LF will be replaced by CRLF in..." 에러 해결 방법warning: LF will be replaced by CRLF in app.js. The file will have its ori..
[etc] GitHub CLI 명령어 모음
·
공통
깃 초기화git init 경로명깃 상태 확인git status간단하게 깃 상태 확인git status -s깃 저장소 복제git clone 원격저장소URL 새폴더이름로그 확인git log커밋 비교git diff원격 저장소 별칭 확인git remote원격 저장소 별칭과 주소git remote -v원격 저장소와 연결git remote add 별칭 URL등록한 원격 저장소 삭제git remote rm 별칭커밋 가져오기git pull 또는 git fetch커밋 전송하기git push 별칭 브랜치 이름현재 브랜치 확인git branch브랜치 생성git branch 브랜치이름브랜치 이동git checkout 브랜치이름스태시 저장git stash스태시 읽기git stash pop브랜치 병합git merge 브랜치이름리..