전체 페이지뷰

2016년 11월 16일 수요일

How to Use Git and GitHub을 위한 workspace 설정

How to Use Git and GitHub을 위한 workspace 설정


계속해서 Udacity: How to use git and Github 강의를 따라가고 있는 중.


이제 version control을 위한 directory를 만들어보자.

먼저 이왕이면 Git bash를 이용,
편한 곳에 version-control이라는 폴더를 만들고,
그 속에 또 reflections라는 서브폴더를 만든다. 그리고 그 속에
here여기서 받은 텍스트를 넣고
이름을 lesson_1_reflections.txt로 바꾼다.
cd ~                          # change directories to your home directory
mkdir version-control         # make version-control directory
cd version-control            # go to version-control directory
mkdir reflections             # create reflections directory
cd reflections                # go to reflections directory
subl lesson_1_reflections.txt # launch sublime with file called lesson_1_reflections.txt (you can replace subl with another editor here if you prefer a different one)
그간 사용한 command는 위와 같다.
pwd를 쳐서 현재 작업하는 폴더를 확인해보고
(print working directory)
ls를 쳐서 디렉토리 내의 파일을 확인해보자.
(list the files in this directory)

이제 버젼관리를 위한 폴더가 완성되었다.



댓글 없음:

댓글 쓰기