git clone [REPO_URL] [DIR]
git checkout -b feature/login
git add .
git commit -m "로그인 기능 구현"
git push origin feature/login
git remote add origin https://github.com/luneah/remote-repository-sample.git
내PC의 로컬 git 프로젝트와 원격 저장소가 연동된다. 잘 연동되고 있는지는 git remote
명령어를 통해 알 수 있으며 좀 더 자세한 정보를 원한다면 git remote -v
명령어를 통해 확인할 수 있다.