반응형
$ mkdir 디렉토리명
$ cd 디렉토리명
$ git config --global user.name "이름"
$ git config --global user.email "이메일주소"
$ git config --list
$ git clone http://gitlab.xxxxxxxxxx.co.kr/test_api.git => 원격에 있는 repository를 local에 복제
$ git add 파일명 => 변경된 파일만 내부 git repository에 추가
$ git add --all => 변경된 모든 파일을 내부 git repository에 추가합니다.
$ git commit -m "commit message" => 내부 git repository에 커밋 메시지와 함께 커밋합니다.
$ git push -u origin master => GitLab에 commit된 내용을 업데이트 합니다.
반응형