1. Clone (복제)
# Cloning
git clone [URL]
# Example
git clone https://github.com/YOUR_GIT_HUB_ID/YOUR_REPOSITORY.git
2. Remote (Local Directory to Github Repository 간 폴더 연동)
# 현재 연결된 원격 저장소 확인
git remote -v
# 원격 저장소 추가
git remote add origin [URL]
# Example 1 (git-hub)
git remote add origin https://github.com/YOUR_GIT_HUB_ID/YOUR_REPOSITORY.git
# Example 2 (bitbucket)
git remote add origin https://YOUR_GIT_HUB_ID@bitbucket.org/YOUR_GIT_HUB_ID/YOUR_REPOSITORY.git
# 현재 연결된 원격 저장소 삭제 (이미 존재한다는 에러가 표시될 때)
git remote rm origin
3. Add (로컬 디렉토리에서 감시할 파일을 추가)
# Example
git add .
4. Commit (변경된 데이터 세이빙 포인트 생성)
# Example
git commit -m "ANY STRING ABOUT CHANGED"
5. Push (변경된 데이터 Git-Hub Repository에 업로드)
# Example
git push -u origin master
# enter YOUR_GIT_HUB_ID & YOUR_GIT_HUB_PW
# 경고 혹은 오류가 뜰 때 강제로 푸쉬하는 방법
git push -u --force origin master
6. Git Delete (해당 디렉토리가 기존 작업중이었던 경우 혹은 기존의 히스토리가 남아있는 경우) 과거의 잔재를 제거(선택사항)
# 현재 위치한 디렉토리에 존재하는 git 데이터 삭제
rm -rf .git
7. Git Pull (원격 Repository 로 부터 변경사항 내려받기)
# Example
git pull
# enter YOUR_GIT_HUB_ID & YOUR_GIT_HUB_PW
'임시 저장소(Temperature)' 카테고리의 다른 글
[VS CODE] 개꿀팁 필살기 단축키 모음 (0) | 2020.02.15 |
---|---|
[git Kraken] 사용법 (0) | 2019.12.24 |
[Django] Apache + Django + Windows10 환경에서 mod_wsgi 설치하는 방법 (0) | 2019.10.28 |
[Ubuntu] 우분투 Visual Studio Code 설치하는 방법 (0) | 2019.10.25 |
[Git] Bitbucket 사용법 1 | git push -u origin master (0) | 2019.10.18 |