깃 명령어

Development/Git

Git 기본 명령어

Git으로 파일 관리를 시작하기(Git 초기화) Git 저장소 생성 git init 기본 브랜치 이름 변경 git config --global init.defaultBranch 변경할_브랜치_이름 현재 상태 확인 git status 전체 로그 확인 git log Staging area로 파일 이동시키기 git add . 저장소 복제 및 다운로드 git clone ~~~~ 파일을 Local repository에 저장하고 버전을 기록(commit) git commit -m "message" Remote repository로 업로드 git push origin master 원격 저장소의 변경 내용을 현재 디렉토리로 가져오기 (pull) git pull Remote repository와 Local reposit..

dudu_
'깃 명령어' 태그의 글 목록