티스토리 뷰

GIt

Git Hub 사용법 정리

eenue 2024. 11. 1. 12:53

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`)


공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함