반응형
원문 : http://blog.naver.com/wmi1258?Redirect=Log&logNo=30109201253
명령어 이외에도 Windows에서 git을 사용하는 방법에 대해서도 있네요. git이라는게 여기저기서 좋다고하니 좋은 것 같은데.. 막상 사용하기가 쉽지가 않습니다. 인터페이스가 그래픽적이지 않고 텍스트 명령어 라서인지 처음 진입장벽이 더 큰 것 같습니다. 극복하려면 역시 많이 사용 할 수 밖에 없겠죠.
보고 공부해야겠어요!
git config --global user.name [user name] 작업자 이름 설정
git config --global user.email [user email] 작업자 이메일 설정
git config --global --list 설정값(이름 및 메일등 ) 확인
git config --global user.email [user email] 작업자 이메일 설정
git config --global --list 설정값(이름 및 메일등 ) 확인
git init git 저장소(repo) 만들기
git remote add [remote name] [remote addres] 별명으로 원격지주소를 저장
git remote rm [remote name] 별명의 원격지를 삭제
git remote rename [remote name] [new name] 별명을 새로운 별명으로 변경
git remote rm [remote name] 별명의 원격지를 삭제
git remote rename [remote name] [new name] 별명을 새로운 별명으로 변경
git fetch [remote name] remoet의 모든 정보를 가져옴(모든 branch)
git pull 저장소에서 변경 내용 가져오기
git push commit들을 master 저장소에 저장?
git push [remote name] [localbranch name] local branch의 내용을 업데이트
git push [server] tag [TAG] server에 tag 전송
git push [server] --tags 변경된 모든 tag 전송
git push [server] [L.B]:[R:B] server 에 local branch 를 Remote branch이름으로저장
git push [remote name] [localbranch name] local branch의 내용을 업데이트
git push [server] tag [TAG] server에 tag 전송
git push [server] --tags 변경된 모든 tag 전송
git push [server] [L.B]:[R:B] server 에 local branch 를 Remote branch이름으로저장
git tag [TAG NAME] 저장소에 태그를 붙인다.
git tag 태그목록을 본다.
git tag 태그목록을 본다.
git branch [branch name] 저장소의 branch name으로 branch를 만든다.
git branch branch 목록을 본다.
git branch -a 현재 생성된 모든 local branch와 reomte branch 확인
git branch branch 목록을 본다.
git branch -a 현재 생성된 모든 local branch와 reomte branch 확인
git checkout [branch name] 다른 브랜치로 전환
git checkout -b [branch name] branch 생성
git checkout [file or folder] git repo 기준 마지막 commit 상태로 돌림
git checkout [id] [file or folder] git repo 기준 id에 해당하는 commit 상태로 돌림
git checkout -f 아직 commit 되지 않은 working tree와 -index 수정정사항
모두 사라짐
git checkout -b [branch name] branch 생성
git checkout [file or folder] git repo 기준 마지막 commit 상태로 돌림
git checkout [id] [file or folder] git repo 기준 id에 해당하는 commit 상태로 돌림
git checkout -f 아직 commit 되지 않은 working tree와 -index 수정정사항
모두 사라짐
git merge [branch name] branch의 내용을 가져와 합침
git add [file or folder] git에 file 또는 folder 추가
git add * git에 모든 file 또는 folder 추가
git add * git에 모든 file 또는 folder 추가
git rm [file or folder] git 파일 또는 폴더 제거
git status 현재 git 상태 보기
git commit -m [message] message를 repo에 저장
git diff local과 remote의 차이점을 보여줌
git remote remote서버 확인
반응형
'컴퓨터 일반 > Git' 카테고리의 다른 글
[GIT] git 특정 파일 무시하기 (0) | 2012.10.19 |
---|---|
[GIT] 이전 commit에서 삭제한 파일 복구하기 (0) | 2012.09.27 |
[Git] Pro Git 도서 한글 번역 (0) | 2012.01.16 |
namhyung님의 Git 사용자 설명서 (0) | 2011.10.11 |
Git 사용하기 (0) | 2011.04.08 |