1. repository 만들기

2. Git Bash 로 push 하기

- 아래 명령어를 차례로 입력

 

$ cd Local Project Path

$ git init 

$ git add .

$ git commit -m "first commit"

$ git remote add origin repositoryURL

$ git push -f orign master

+ Recent posts