3 files
version: "1.0.1" name: git-commit-and-push description: Git Commit and Push. Use when user wants to commit and push changes together.
커밋과 푸시를 순차적으로 수행합니다.
/git-commit
/git-push
# 1. 상태 확인git statusgit fetch origin # 2. 스테이징 & 커밋git add <files>git commit -v # 3. 동기화 & 푸시git pull --rebase origin $(git branch --show-current)git push origin $(git branch --show-current)