목록브랜치 (2)
MyCloud
로컬 브랜치와 충돌로 인해 pull 오류 발생 시 대처법 error: Your local changes to the following files would be overwritten by merge: ----Please commit your changes or stash them before you merge. Aborting 로컬 브랜치와 충돌로 인해 pull이 이루어지지 않는 경우가 빈번합니다.이에 대한 해결 방법으로 2가지 정도가 있습니다. 해결 방법 1. HEAD 되돌리기첫번째는 가장 최근 commit 했던 이력으로 HEAD를 되돌리는 방법입니다.git reset --hard HEADgit pull 해결 방법 2. git stash 명령어를 이용하기두번째는 stash 명령어를 이용하여 스택에 쌓고..
Git command 1. 저장소 관련 명령어// 로컬 저장소 복제git clone 사용자명@호스트:/원격/저장소/경로 // 추가와 커밋git statusgit add *git commit -m "contents"git push origin master // 원격 서버로 발행git remote add origin 2. 브랜치 관련 명령어// 브랜치 만들기git checkout -b branch_name // 브랜치 이동git checkout master // 브랜치 삭제git branch -d branch_name // 원격 저장소로 전송git push origin branch_name 3. 저장소 갱신과 병합// 저장소 갱신git pull // 변경내용을 현재 브랜치에 병합git merge branch..