자주 사용하는 git 명령어

yun yun·2021년 8월 5일
0
명령어수행 내용
git init로컬 저장소를 생성하기
git clone [repository url].git .원격 저장소를 현재 폴더에 가져오기
* repository 이름의 폴더에 원격 저장소를 가져올 때
git clone [repository url].git
git add [file path]현재 변경 사항을 로컬 stage에 올리기
* 모든 변경 사항: git add .
특정 파일 형식의 변경 사항만: git add *.py
git commit -m "메시지 내용"stage에 올라간 변경 사항을 메시지와 함께 로컬에 반영하기
git push [remote repository][branch name]원격 저장소로 변경 사항을 올리기
git status현재 상태 확인하기
git pull로컬 저장소와 원격 저장소 동기화 하기
git commit --amend커밋 수정하기
git branch [branch name]branch 생성
git branch -d [branch name]branch 삭제
git switch [branch name]branch 변경

참고 사이트 :

profile
같이 일 하고 싶은 개발자가 목표!

0개의 댓글