//git 작업 디렉토리 생성 (해당 디렉토리 이동후)
git init
//글로벌 유저 설정 (프로젝트마다 다르게 하고 싶을경우는 해당 디렉토리에서 --global 빼고 입력
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
//클론
git clone https://github.com/kimtaekyung/springproject.git
//현재 체크아웃중인 브렌치 워킹디렉토리 및 스테이징 정보 가져오기
git status
//working dir 수정된 파일목록 스테이징으로 옮기기
git add *
git add *.css
git add dir/*.css
git add dir/**/.css
(이건좀 더 알아봐야할듯)
//리모트 브렌치 변경이력 및 데이터 가져오기\
git pull origin master
//스테이징 영역 로컬커밋
git commit -m
//브렌치 이동
git checkout 브렌치명
//리모트 브렌치로 푸쉬
git push origin 리모트 브렌치명
//머지 git checkout 으로 대상브런치로 이동후
git merge 머지할타겟브런치명
//로컬 브렌치 리스트 보기
git branch
git checkout
댓글 없음:
댓글 쓰기