LukeHan 의 잡다한 기술 블로그

Ubuntu Github 사용법 본문

OS/Linux

Ubuntu Github 사용법

LukeHan1128 2021. 10. 2. 20:00
반응형
# 설치
apt-get install git
 
 
# 전역 설정 정보 조회
git config --global --list
 
 
# 저장소별 설정 정보 조회
git config --list
 
 
# 설정 - 깃허브 계정 정보를 입력한다.
git config --global user.name "LukeHan1128"
git config --global user.email "lukehan1128@gmail.com"
 
 
# 저장소 초기화
git init
 
 
# 저장소 복제
git clone https://github.com/LukeHan1128/samples.git
 
 
# 특정 브랜치만 복제
git clone -b branch_name  https://github.com/LukeHan1128/samples.git
 
 
# 브랜치 목록 보기
git branch
 
 
# 원격 브랜치 목록 보기
git branch -r
 
 
#모든 브랜치 목록 보기
git branch -a
 
 
# 변경된 파일 추가 (커밋전 필수)
git add <file>
 
 
# 전체 파일 추가
git add -A
 
# add 취소
git reset <file>
 
 
# add 전체 취소
git reset
# 커밋
git commit -m 'message'
 
 
# push - 업로드
git push
 
 
# pull
git pull
반응형
Comments