댓글 쓰기 권한이 없습니다. 로그인 하시겠습니까?
Android
2011.12.26 16:13
[GIT 사용법] 초보자가 알아두면 좋을 명령어 정리
조회 수 69008 댓글 1
git config --global user.name [user name] 작업자 이름 설정
git remote add [remote name] [remote addres] 별명으로 원격지주소를 저장
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 전송 -Remote branch이름으로저장
git tag [TAG NAME] 저장소에 태그를 붙인다. git branch [branch name] 저장소의 branch name으로 branch를 만든다. reomte branch 확인
git checkout [branch name] 다른 브랜치로 전환
git merge [branch name] branch의 내용을 가져와 합침 git add [file or folder] git에 file 또는 folder 추가 git rm [file or folder] git 파일 또는 폴더 제거 git status 현재 git 상태 보기 git diff local과 remote의 차이점을 보여줌 git remote remote서버 확인
Dreamy의 코드 스크랩내가 모으고 내가 보는
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Designed by sketchbooks.co.kr / sketchbook5 board skin
Sketchbook5, 스케치북5
Sketchbook5, 스케치북5
Sketchbook5, 스케치북5
Sketchbook5, 스케치북5
( Untracked file 들도 모두 commit 되므로 주의가 필요함)
( Workspace에 modified된 파일들도 Index영역에 등록되므로 주의가 필요함)