수업에서 Git이란 도무지 이해가 안 되어서 직접 Googling 했다.
Git은 아래 그림이다
a.k.a 분산 버전 관리 시스템
Terminal을 통해서 mkdir(파일명)을 저장한다
$ cd Documents/
$ mkdir git_file
$ cd git_file
$ ls -a
해당 디렉토리에서 Git을 초기화 시켜줘여 Git을 사용할 수 있는 디렉토리가 된다. 이는 처음에 한 번만 진행해주면 된다. Git 초기화는
$ git init
“Initialized empty Git repository in <디렉토리 패스>”가 나온다면 성공
".git" 폴더 안에 config 폴더 확인 방법
MacOS 기준 (Command + Shift + >)
$ git config user.name dhwanam
$ git config user.email dhwanam@gmail.com
$ git clone https://github.com/donghwa-nam/OSSS.git
나는 특이한 케이스라서 로그인 단계가 다르다
Github User Name $ donghwa-nam
Code $ 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