인증(Mac 기준) brew install gh → gh auth login새 레포git init → git add . → git commit → gh repo create일상 관리git add . → git commit -m "..." → git push브랜치git checkout -b 브랜치명 → 작업 → git push origin 브랜치명되돌리기git restore (변경 취소) / git revert (커밋 취소) 1. 초기 설정 → 프로젝트 → 레포지토리 생성# Git 전역 설정 (최초 1회)git config --global user.name "이름"git config --global user.email "이메일"# GitHub CLI 설치 및 인증brew install ghgh auth l..