반응형

1. GitHub NEW repository 생성

 

2. HTTPS 주소 복사

 

3. Terminal, git bash 접속 후 해당 프로젝트 폴더로 이동

 

4. git init

5. git remote add origin HTTPS 주소 붙여넣기

5. git remote -v (연결된 주소 확인)

* git remote 삭제

git remote remove origin

 

연결 끝!

6. git add .

7. git commit -m "First Project"

8. git push origin master

9. 원격 레포지토리 확인

 

 

* gitignore 파일에 적용 안될 때 git 캐시 삭제 후 다시 commit -> push

git rm -r --cached .
728x90
반응형

'Git' 카테고리의 다른 글

Spring git .gitignore 적용 안될 때  (0) 2022.10.06
[Git] Mac SSH키 생성  (0) 2022.03.12
[Git] push 했는데 잔디가 안 심어질 때..  (0) 2021.05.09
[Git] SSH키 설정  (0) 2020.12.12

+ Recent posts