Stack/Git

[Git] 맥 GitHub Repository 연결하기 feat. InteliJ

annovation 2024. 12. 10. 10:56

Terminal 

1. InteliJ 프로젝트 생성 후 터미널 켜기

 

2. 명령어 순서대로 입력하기

git init

git remote add origin <Reporitory 주소>

git add .

git commit -m "initial commit"

git push origin main

 

3. commit이 잘 됐는지 GitHub Repository commit history 확인

반응형

'Stack > Git' 카테고리의 다른 글

[Git] Commit Message  (0) 2025.01.25
[Git] Git workflow 브랜치 전략  (1) 2025.01.24
GitHub  (1) 2025.01.21
[Git 명령어] reset VS revert  (0) 2025.01.20
Let's Git it!  (0) 2025.01.19