오늘은 기본적인 Git 명령어에 대해 정리해보겠습니다.
git config --global user.name "사용자 이름"git config --global user.email "사용자 이메일"git config --listgit initgit clone <저장소 주소>git statusgit add <파일 이름>git add .git rm <파일 이름>git commit -m "커멧 메세지"git commit --amendgit branchgit 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 -vgit push origin <branch_name>git pull origin <branch_name>git loggit log --onelinegit show <commit_hash>git merge <branch_name>git rebase <branch_name>git reset <file>git reset --hard <commit_hash>git revert <commit_hash>git taggit tag <tag_name>git push origin <tag_name>git stashgit stash popgit diff