You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 1. main 기준 브랜치 생성 및 전환
git checkout main
git pull origin main
git checkout -b about-page
# 2. 파일 수정 및 작업# 3. 변경사항 커밋
git add .
git commit -m "✨ about 페이지 작업"# 4. 브랜치 푸시
git push origin about-page