Git - 새로운 로컬 저장소 push 하기

less than 1 minute read

1. 원하는 폴더에 마우스 우클릭

2. Git Bash Here 클릭

3. git init

$ git init

4. git remote 설정

$ git remote add origin Git주소

5. user name 설정

$ git config --global user.name 이름

6. user email 설정

$ git config --global user.email 이메일 주소

7. 설정 값 확인

방법1
$ git config --list`
방법2
$ git config user.name
$ git config user.email  

8. 파일 추가

$ git add --all

9. commit

$ git commit -m "내용"

10. 원격 저장소에 push

$ git push

$ git push -f origin master// 강제로 push

Categories:

Updated:

Leave a comment