오늘은 기본적인 Git 명령어에 대해 정리해보겠습니다.
git config --global user.name "사용자 이름"
git config --global user.email "사용자 이메일"
git config --list
git init
git clone <저장소 주소>
git status
git add <파일 이름>
git add .
git rm <파일 이름>
git commit -m "커멧 메세지"
git commit --amend
git branch
git branch <branch_name>
git checkout <branch_name>
git switch <branch_name>
git merge <branch_name>
git branch -d <branch_name>
git remote add origin <repository_URL>
git remote -v
git push origin <branch_name>
git pull origin <branch_name>
git log
git log --oneline
git show <commit_hash>
git merge <branch_name>
git rebase <branch_name>
git reset <file>
git reset --hard <commit_hash>
git revert <commit_hash>
git tag
git tag <tag_name>
git push origin <tag_name>
git stash
git stash pop
git diff