http://github.com : git hub 설치
git bash에서 다음 수행.
> git config --global user.name "Your Name Here"
> git config --global user.email "your_email@yourmail.com" : github 가입메일
github.com에서 repository 만들기 (https://github.com/username/myproject.git)
git bash에서 다음 수행 : local directory에서 실행
> git init (git status : 상태 확인)
> git add filename : git add Readme.txt
> git commit -m "Add Readme.txt"
github와 local 저장소 연결
> git remote add origin https://github.com/username/myproject.git > git remote -v : 확인
github에 push
> git push -u origin master
git bash에서 다음 수행.
> git config --global user.name "Your Name Here"
> git config --global user.email "your_email@yourmail.com" : github 가입메일
github.com에서 repository 만들기 (https://github.com/username/myproject.git)
git bash에서 다음 수행 : local directory에서 실행
> git init (git status : 상태 확인)
> git add filename : git add Readme.txt
> git commit -m "Add Readme.txt"
github와 local 저장소 연결
> git remote add origin https://github.com/username/myproject.git > git remote -v : 확인
github에 push
> git push -u origin master
댓글