Git에서 자주 사용하는 명령어 몇 가지를 정리해봤습니다.
아래 명령어들은 필수적으로 알고 있는 것이 좋습니다.
git status : git 상태 확인
git add : git 관리 대상 파일 추가
git log : git log 확인
git branch : 현재 branch 확인
git commit "파일명" -m "코멘트" : git commit 하기 (-m : message 기록해서)
test.txt 파일 생성 : echo "hello git" > test.txt
git 상태 확인 : git status
git 관리 대상추가 : git add test.txt
관리대상 추가 후 git 상태 확인 : git status
git commit : git commit test.txt -m "commit test 2020.04.28."
git 로그 확인 : git log
git config --global user.name "자신의 닉네임"
궁금하신 사항은 댓글 남겨주세요.
감사합니다.
참고 :
생활코딩, https://opentutorials.org/course/2708/15202
[Git] 깃 커밋 메시지 수정하기 (Changing commit message, git commit message 수정) (0) | 2023.01.03 |
---|---|
[GitHub Actions] GitHub Actions 예제, Tutorials / Github Action 샘플 (0) | 2022.06.16 |
[Git Repository 로컬 연결] Pull, Push (0) | 2021.03.24 |