Git 명령어 모음 클론 생성 git clone {원격 저장소 URL} {복사할 디렉토리 경로} 예시) git clone https://github.com/사용자명/저장소명.git /Users/사용자명/내문서/프로젝트 Git Pull git fetch origin git pull 원격 브랜치를 로걸 저장소로 생성 git checkout -b {생성할 브랜치명} {원격 브랜치명} 예시) git checkout -b feature/payment origin/feature/payment 로컬 브랜치 생성 git branch {생성할 브랜치명} {생성 기준이 되는 브랜치명} 예시) git branch feature/test develop 변경 내용 add, commit git add {파일경로}, (전체는, g..