885 B
885 B
Execute a GitHub Issue task
Review the GitHub Issue content and perform the task execution.
Follow these steps to proceed with the task:
- Update main branch: Switch to the main branch with
git checkout main, then update to the latest state withgit pull origin main. - Review Issue content: Use the
gh issue view #$ARGUMENTScommand to check the details of the specified Issue. - Create branch: Based on the Issue content, create a new branch with appropriate naming.
- Break down tasks: Break down the Issue content into tasks and clarify the necessary work.
- Execute work: Make code modifications and additions based on the tasks.
- Commit and push: While progressing with the work, commit at appropriate granularity and push.
- Create pull request: Once the work is completed, use the
gh pr createcommand to create a pull request.