"Git"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
잔글
잔글
41번째 줄: 41번째 줄:
  
 
== Git 명령어 ==
 
== Git 명령어 ==
 +
 +
 +
 +
{| border="1" cellspacing="0" cellpadding="2" style="width: 100%;"
 +
|-
 +
| style="text-align: center; background-color: rgb(241, 241, 241);" | 분류
 +
| style="text-align: center; background-color: rgb(241, 241, 241);" | 명령어
 +
| style="text-align: center; background-color: rgb(241, 241, 241);" | 상세
 +
|-
 +
| style="text-align: center;" | 초기 설정
 +
| git init
 +
| 로컬 저장소 생성
 +
|-
 +
| style="text-align: center;" | <br/>
 +
| git remote add ~
 +
| 리모크 저장소 연결
 +
|-
 +
| style="text-align: center;" | <br/>
 +
| <br/>
 +
| <br/>
 +
|}
  
 
== 참고 문헌 ==
 
== 참고 문헌 ==

2014년 9월 29일 (월) 13:52 판

오픈소스 분산 버전 컨트롤 시스템인 git를 정리 한다.


Git 개요

Git은 로컬 저장소를 가지며 SnapShot 형태로 버전을 관리 합니다.


Git 저장소

  • Work Space : 개인별 작업 공간
  • Staging Area (index) : Commit할 파일을 지정 (git add)
  • 로컬 저장소 : 자신이 작업한 내용을 반영 (git commit, git commit -a)
  • 원격 저장소 : 다른 사람과 작업을 공유할 때 사용 (git push / git pull (git fetch, git merge))
  • Work Space -> Staging Area (index) -> Local Storage -> Remote Storage


Master and Branch

  • Master : 메인 코드 (git checkout master, git merge branch)
  • Branch : 새로 작업을 위해 생성한 코드 (git branch, git checkout, git checkbout -b)

CentOS에서 git 설치

  • 설치
yum install git
git version

Git 명령어

분류 명령어 상세
초기 설정 git init 로컬 저장소 생성

git remote add ~ 리모크 저장소 연결



참고 문헌