- 정보공유
[github] git 으로 push 하기.
- 작성일
- 16-03-25 01:02
- 조회수
- 41,038 건
- 댓글
- 0 건
git config --global user.name "이름" (git 처음등록시)
git config --global user.email "깃허브 메일주소" (git 처음등록시)
git init // 깃 명령어를 사용할 수 있는 디렉토리로 생성. (해당 프로젝트 처음등록시)
git status // 현재 상태
git add . // 현재 디렉토리의 모든 화일을 추가 또는 "git add 파일명"
git commit -m "커밋스냅샷설명"
git remote add origin https://github.com/username/myproject.git // 로컬과 원격 저장소를 연결한다. (처음등록시)
git remote -v // 연결상태를 확인.
git push // 깃허브로 푸시. 또는 git push origin master
간단히..
git add .
git commit -m "커밋스냅샷설명"
git push
수정은
git commit --amend