git 명령어

0 투표

git 서버에서 저장소 생성

# git init --bare /home/gitrepo/testrepo

클라이언트에서 git 사용자 설정

# git config --global user.email "[email protected]"
# git config --global user.name "Git Tester"

로컬 저장소 생성

# git init

git 파일 추가

# git add /path/to/filename

로컬 저장소로 commit

# git commit -m “First Commit”

리모트 저장소 추가

# git remote add origin ssh://[email protected]:/home/gitrepo/testrepo

리모트 저장소 보기

# git remote -v

로컬 저장소 파일을 리모트로 commit (origin 은 저장소, master 는 브랜치)

# git push origin master

리모트 저장소 clone

# git clone ssh://[email protected]:/home/gitrepo/testrepo

변경된 파일 목록등이 현재 git 상태를 볼려면

# git status

당신의 답변

보여지는 당신의 이름 (옵션):
개인정보 보호: 이메일 주소는 이 알림을 발송하기 위해 사용됩니다.
안티-스팸 확인:
앞으로 이 검증을 피하려면,로그인 혹은 가입 하시기바랍니다.
구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...