git

깃허브 프로젝트 올리기

EunaSon 2023. 7. 25. 13:50

깃허브

-내 소스코드를 저장 (버전관리)

-소스코드 공유

-협업하는 공간

 

깃허브는 소스코드를 올리는 어떤 공간의 개념

깃은 소스코드를 내 컴퓨터에서 인터넷으로 올려주는 역할->깃은 따로 설치해줘야함

 

1. 깃허브 접속> sign up> sign in

https://github.com/

 

GitHub: Let’s build from here

GitHub is where over 100 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 fea...

github.com

 

2. 'New' 클릭(새 repository 생성...프로젝트 올릴 공간) > 프로젝트 이름 작성, 전체공개/비공개(public/private) 선택 > 'Create repository' 클릭

3. (git 다운받아야함) 아래 링크 접속 > 'Downloads' > 운영체제에 맞게 다운받아 next 계속 누르며 설치

https://git-scm.com/

 

Git

 

git-scm.com

 

 

4. (git 환경설정 해줘야함) 다운로드 후 작업표시줄-'git bash' 찾아서 열어주기

 

* 깃 명령어 총정리집 by 코딩알려주는 누나

https://hackmd.io/@oW_dDxdsRoSpl0M64Tfg2g/ByfwpNJ-K

 

Git 명령어 총정리집 (by 코딩알려주는 누나❤) - HackMD

# Git 명령어 총정리집 (by 코딩알려주는 누나❤) ![](https://c.tenor.com/UNTqMDwqh1gAAAAM/hello-hi.gif) 안녕하세요 여러분 :)

hackmd.io

-1. 유저이름 설정

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

*) 띄어쓰기 가능

 

-2. 유저이메일 설정 - 깃허브 가입시 입력했던 이메일 써주기

git config --global user.email "깃허브가입에 사용했던 이메일"

 

-3. 잘 config 됐는지 확인

git config --list

->user.name과 user.email만 잘 들어갔는지 확인

5. 깃허브에 처음 코드 업로드하기