보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.

명령어 정리 명령어 기능 명령 방식 git init local 저장소 생성 git init git config user.name git config user.email 프로젝트별로 local User 등록 git config user.name "사용자 이름" git config user.email "이메일 주소" git config --global user.name git config --global user.emial local 환경의 전체 프로젝트를 위한 사용자 등록 git config --global user.name "사용자 이름" git config --global user.emial "이메일 주소" git remote add remote 저장소의 주소를 local 저장소에 등록 ※ origin..

문제인식 해결방안 git rebase -i HEAD~2 git rebabse - Reapply commits on top of another base tip -i, --interactive Make a list of the commits which are about to be rebased. Let the user edit that list before rebasing. HEAD~2 - HEAD에서 2번째 떨어진 commit 까지 가져오겠다 실행화면 실행결과 해당 커밋이 삭제가 된다
보호되어 있는 글입니다.
보호되어 있는 글입니다.