본문 바로가기

Github

GitHub

728x90

 

 

https://github.com/

 

GitHub: Where the world builds software

GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat...

github.com

 

 

GitHub을 이용하시려면 일단 회원가입을 해주세요~ 

 

회원가입 후 

1. Git을 설치.

https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

 

 

2. Repository 생성.

다시 Git  사이트로 돌아와서 왼쪽에 보이는 New 클릭

 

Repository name 을 정하고 생성한다.

 

 

3. 생성된 저장소의 주소를 기억해두자. ( 오른쪽 동그라미 누르면 주소 복사됨)

 

 

4. 업로드하고 싶은 프로젝트의 폴더를 마우스 우클릭 > Git Bash Here

 

 

5. 초기 설정을 해준다. ( 처음에만 하면됨) 

git config --global user.name "유저이름"

git config --global user.email "유저 이메일"

 

 

6. 파일 준비

git init    //.git 파일 생성

git add .   //선택한 프로젝트 폴더 내의 모든 파일 관리

  -> 특정파일만 하고 싶다면  git add 파일이름.파일형식  ex) git add a.txt

git status   //상태확인

git commit -m "주석"   //커밋

 

7. 업로드하기

git remote add origin 3번에서 저장한 깃허브 저장소 주소

git push -u origin master

 

 

8. 프로젝트 업로드 완료

 

 

 

 

참고 

https://soda-dev.tistory.com/12?category=503036

'Github' 카테고리의 다른 글

Github Token 방식으로 로그인하기  (0) 2022.05.03