:: ADVANCE ::

[Git][tutorial] 1. git init 본문

Study/Git

[Git][tutorial] 1. git init

KSJ14 2017. 11. 22. 01:04
반응형

[Git][tutorial] 1. git init




if) windows 사용자라면 [시작] -> [Git] -> [Git bash] 실행



1. Git 저장소 생성


원하는 directory 에 가서 


1
mkdir git_tutorial
cs


  -> git_tutorial 이라는 폴더 생성



1
2
cd git_tutorial 
git init
cs


  -> git_tutorial 폴더로 이동

  -> git_tutorial 폴더를 초기화 한 후 master 브랜치로 지정


  =>> 경로에 (master)가 표시된다. 

   현재 저장소에서 작업 중인 브랜치가 master 브랜치라는 뜻




반응형

'Study > Git' 카테고리의 다른 글

[Git] Git commit policy  (0) 2017.11.19
[Git] Setting  (0) 2017.11.19
Comments