⚙️ Clone

git clone <https://github.com/KeepDoingSomething/Algorithm-Study.git>

⚙️ Fork

  1. 레포에서 Fork 버튼 클릭 후 본인의 레포로 복사합니다.
  2. 본인의 레포를 clone
// 복사한 레포 clone
git clone <https://github.com/본인_레포/Algorithm-Study.git>
// 원본 레포를 원격 저장소로(원본으로 push 하기 위해서)
git remote add upstream <https://github.com/KeepDoingSomething/Algorithm-Study.git>
// 원본 변경사항 가져오기
git fetch upstream
// main 브랜치로 변경
git checkout main
// 병합
git merge upstream/main

⚙️ 공통(CLI)

// 본인 이니셜 브랜치 생성
git checkout -b LIB(이니셜)

// 자유롭게 푸시 하시면 됩니다.
git add .
git commit -am "Feat: 문제 풀이"
git push origin LIB

※ IDE 를 적절하게 사용하셔서 편하게 하시길 권장 합니다.