본문 바로가기
Tech-BigData

COURSERA - The Data Scientist’s Toolbox - 02 : Git

by redcrow 2014. 12. 21.

The Data Scientist’s Toolbox - 02 :  Git


1. Version Control System

1) Version Control?


"Version control is a system that records changeds to a file or set of files over time so that you can recall specific versions later"

버전관리시스템은 나중에 특정 버전을 다시 가져올 수 있도록 변경사항을 파일에 기록하는 시스템이다.


http://git-scm.com/book/en/v2/Getting-Started-About-Version-Control


2) Git ?

- Git은 무료 & 오픈소스 분산버전관리 시스템

- 모든것은 로컬pc의 repository에 저장

- COMMAND LINE ENVIRONMENT


2. Git 설치

1) DOWNLOAD GIT

http://git-scm.com/downloads


2) INSTALLING GIT

DEFAULT로 설치


3. Git Bash : Command LIne Environment

1) Open Git Bash

- Git Bash는 윈도우사용자만 가능. 맥은 Terminal Application


윈도우 실행창(윈도우키+R)에서 Git Bash 실행하면 아래와같은 화면




2) Configure Username and Email


git config --global user.name "Your Name Here"

git config --global user.email "your_email@example.com"


git config --list







댓글