할머니의 콤퓨타 도전기

github 사용법 본문

Git

github 사용법

ji.o.n.e 2020. 7. 31. 15:48
  • git 초기화
git config --global user.name "사용자 이름"
git config --global user.email 메일 주소
git config --list //config 설정확인
  • 로컬 컴퓨터(git)과 원격 저장소(github) 연결

  1. github 사이트에서 Clone or download 클릭 → SSH 또는 HTTPS 주소 복사

  2. 터미널에 git clone git@github.com:id/repository name.git 입력

  3. pull : 로컬로 원격 저장소의 내용 가져옴

  4. 작업 후 add

    git add *

  5. commit

    git commint -m "[Push message]"

  6. push : 로컬 저장소의 내용을 원격 저장소로 보냄

    git push

  • 소스 파일 업로드
  1. 자신의 컴퓨터에서 git에 업로드하려는 파일 찾기

  2. 마우스 오른쪽 버튼 클릭 후 Git Bash Here 선택

  3. 밑의 코드 입력

    git init //초기화
    git status //파일 상태 확인
    git add . //로컬 저장소에 있는 모든 파일 올림
    //특정 파일만 업로드 하고 싶은 경우 : add [파일명 or 폴더명]
    git commit -m "[Push message]" //commit
    git remote add origin 본인 레파지토리 주소
    //이미 존재하는 경우엔 git remote remove origin
    git remote -v //로컬과 원격 저장소 연결
    git push -u origin master //commit했던 파일들 원격 저장소로 push
  • 파일 or 폴더 이름 변경

    git mv oldName newName

    invalid argument error 가 발생하는 경우

    git mv oldName tmp //임시 폴더에 저장
    git mv tmp newName

'Git' 카테고리의 다른 글

마크다운(Markdown) 작성법  (0) 2020.07.31
Comments