원클릭으로
dev-git-setup
Set up git aliases.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Set up git aliases.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Rebase open PRs onto the default branch, resolve conflicts, and force push.
Review Airflow UI code for consistency, best practices, and conventions.
Develop Airflow UI features from an issue link or text description.
Generate a concise PR changelog summary from the current branch diff.
Generate a Google Slides presentation from a paper PDF URL using gws CLI.
Address PR review comments, fix valid ones and draft replies for invalid ones.
| name | dev-git-setup |
| description | Set up git aliases. |
/dev-git-setup
IMPORTANT: Do NOT use Bash or git config to set any aliases. Always use the Read and Edit tools on ~/.gitconfig directly.
~/.gitconfig.[alias] section exists, use the Edit tool to merge the aliases below into it. If it doesn't exist, use the Edit tool to append a new [alias] section.git config --global --list | grep alias.Each line below is a gitconfig alias entry (key = value). Add them under [alias]:
pp = push --force-with-leaser1 = reset HEAD~1ano = commit -a --amend --no-editatemp = commit -a -n -m "TEMP"temp = commit -n -m "TEMP"a = add .rbm = rebase mainno = commit --amend --no-editsync = "!f() { if git remote | grep -q upstream; then b=$(git remote show upstream | sed -n 's/.*HEAD branch: //p'); git fetch upstream && git checkout $b && git rebase upstream/$b && git push origin $b --force-with-lease; else git pull; fi; }; f"