목록Git (1)
eunzae's develog
[Git] Git 시작하기, 기본 명령어
git 설치하기(Mac OS) Step 1. brew 설치 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 터미널에서 ctrl + c, ctrl + v 해서 실행 git install 을 하기 위해서 homebrew를 먼저 설치 Step 2. git 설치 brew install git Step 3. git 설치 확인 git --version 빈 디렉토리 추가하기 git repository에 빈 폴더는 추가가 되지 않기 때문에 폴더 내에 .gitignore 파일을 생성한 후 git add commit push 명령어를 통해 빈 폴더를 추가할 수 있다. git 명령어 git config..
Other/Git
2021. 6. 2. 12:57