[Github] 원격저장소 인텔리제이 연결

📌원격 저장소 인텔리제이 연결

✅원격 저장소 생성

image description

✅프로젝트에 레포지토리 생성 명령어 복사

image description

명령어 복붙

echo "# Test" >> README.md
  git init
  git add README.md
  git commit -m "first commit"
  git branch -M main
  git remote add origin https://github.com/minwoo-jeon/Test.git
  git push -u origin main

✅인텔리제이 터미널에서 위에 복붙한거 코드 붙어넣기

image description

✅클래스 파일 갈색

image description

원격 저장소 연결은 되고 로컬 파일들이 해당 원격 저장소로 아직 커밋 되지않은 상태

✅깃 커밋 -> push

깃 커밋하고 push 하면 원격 저장소에 해당 프로젝트 파일 리소스 올라온다. (끝)

Categories:

Updated:

Leave a comment