Git에 관한 기본을 다음 링크를 참고해서 공부해보세요.
http://paransilverlight.tistory.com/241
1. .Gitigrnore 파일을 찾아서 version 관리를 무시하고 싶은 목록을 작성한다.
2. git init 명령어를 사용해서 git을 프로젝트에 추가한다.
git add . 명령어를 사용해서 모든 파일을 local repository에서 추가한다.
3. git status를 사용해서 chage된 것을 확인할 수 있다.
4. git commit -m "Initial commit" 명령어를 사용해서 Local Repository에 commit 한다.
SVN과 다르게 아직 서버에서 commit 된 상태가 아닙니다.
5. Github 사이트에 접속해서 new repository를 생성한다. https://github.com/new
(SSH를 등록해야할 필요가 있을 수 있다.)
6.git config 명령어를 사용해서 username과 email address를 local에 생성한 git에 등록
git remote add origin 명령을 사용해서 Github 사이트에 생성한 저장소와 연결
git push origin master 명령을 사용해서 Githut Remote Repository에 Local repository의 파일을 push 한다.
7. Remote Repository에 파일이 push 된 것을 확인 할 수 있다.