프로그래밍언어/Git

[Git] 깃 허브 Bash 설치 및 기본 셋팅.

Petabyte 2020. 3. 4. 14:49

https://git-scm.com/download/win

 

Git - Downloading Package

Downloading Git Now What? Now that you have downloaded Git, it's time to start using it.

git-scm.com

윈도우 64비트 사용자라면 해당 파란 체크 부분을 다운로드 설치 한다.

설치할때 이렇다할것은 없다 기본 셋팅으로 다음~을 눌러 진행하면 된다.

 

설치가 완료되면.

 

 

Git Bash 를 실행한다.

 

설치가 정상적으로 되었다면

git --version

 

 

 

위와같이 확인할수있다.

 

간단한 bash 명령어는 리눅스와 동일하다

 

 

git init #깃 경로 지정

vi .gitignore #깃 커밋 제외대상 추가

vi README.md #깃 메인 설명



환경설정 

git config --global user.name "Peta"
git config --global user.email "0petabyte@gmail.com"

확인은 git config --list

git add 폴더이름 or 파일명 또는 git add . (모든 파일 추가)

git commit -m "message 를 이곳에 적는다"

git remote  (기존에 설정이 안되었다면 아무것도 안나온다.)

git remote add origin https://github.com/TEST/TEST

이제 repository 에 연결완료.

git push origin master  입력하면 push 완료.

삭제

git -rm -r 폴더 git -rm -r file.js

git commit -m 'delete'

git push origin master