명령어 정리. |
clear
mkdir hello-git-cli
cd hello-git-cli
ls - al
nano hello1.txt
.git 깃 저장소
git init . //깃 초기화
git add hello1.txt //작업대(Staging Area)에 올리기
git commit - m "Message 2" // Repository에 전송
git status // 깃상태
git log // 깃 로그
git log -p// 어떻게 바꼇는지 패치내역을 볼 수 있음.
git log --stat //깃 로그의 파일까지 볼 수 있음
git diff //바뀐 내용을 알 수 있다.
git reset --hard // StaginTree에 잇는걸 초기화
새로 배운 명령어 |
▷git checkout 버전아이디
head -> master 최신버전을 가리키고 있다.
이전의 버전으로 가고 싶다면
head를 이전버전으로 가리키면 된다.
▷git checkout master
최신파일(master)으로 다시 돌아가고 싶다면
▷에러 대처하기.
이거 하면서 아래의 에러를 만날 수 있는데
Please commit your changes or stash them before you switch branches.
git reset --hard // StagingTree에 있는것을 날려버리면 해결 됬음.
참조글 : (링크)
반응형