티스토리 뷰
1. 프로젝트 디렉터리 준비
mkdir [file name]
cd [file name]
2. Git 리포지토리 초기화
git init
3. 사용자 정보 설정
git config --global user.name "Username"
git config --global user.email "email@example.com"
4. 파일 생성 및 Git에 추가
echo "# [file name]" >> README.md
- 변경된 파일을 Git 스테이징 영역에 추가
git add .
5. 커밋 생성
git commit -m "commit"
6. GitHub 리포지토리 생성 및 리모트 연결
git remote add origin https://github.com/YourUsername/YourRepoName.git
7. 브랜치 생성 및 푸시
git checkout -b main # 브랜치 이름이 'main'인지 확인
git push -u origin main
요약:
1. 프로젝트 폴더를 초기화 (`git init`)
2. 사용자 정보 설정 (`git config`)
3. 파일 추가 및 커밋 (`git add`, `git commit`)
4. 리모트 리포지토리 연결 (`git remote add`)
5. 리모트로 푸시 (`git push`)