본문 바로가기
기타_/알쓸신잡

[알쓸신잡] Git준비 및 설정 (무작정 따라하기)

by 낭람_ 2020. 7. 2.
반응형

[Git 설치하기]

https://git-scm.com/downloads

 

Git - Downloads

Downloads Mac OS X 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

git-scm.com

 

[Git 회원가입]

https://github.com/join

 

Build software better, together

GitHub is where people build software. More than 50 million people use GitHub to discover, fork, and contribute to over 100 million projects.

github.com

[필수 명령어]

add : 커밋할 목록에 추가

commit : 커밋(히스토리의 한단위) 만들기

push : 지금까지의 commit을 Github에 넣기

add - commit - push 순서로 하면 된다.

 

[Git 설정]

미리 설정해둔 계정이 있을 수 있으므로 계정저보들 삭제 (처음 설치시 생략해도 가능)

# git config --global --unset credential.helper
# git config --system --unset credential.helper

자신의 Github 계정 이메일과 이름(영문이름, 아이디x)적기

# git config --global user.email [본인 Git 이메일]
# git config --global user.name [본인 영어 닉네임/이름]

 

반응형

댓글