Lysbethk / nomilo-fishpond-analysis

https://lysbethk.github.io/nomilo-fishpond-analysis/
Creative Commons Zero v1.0 Universal
1 stars 0 forks source link

Test issue #2

Closed Lysbethk closed 6 months ago

alemarieceria commented 6 months ago

Reference

Steps:

  1. Create a new branch for a specific issue: git branch <issue_x>
  2. Navigate to that issue's branch: git checkout <issue_x>
  3. Confirm you are in the correct branch: git branch (There should be an asterisk symbol next to the current branch) or git status (It will tell you: "On branch ")
  4. Complete task within this branch
  5. Save and commit the changes you made in this branch:
    • git status
    • git add .
    • git commit -m "<Insert message here>, closes #<Insert issue number>"
  6. Navigate back to the main branch: git checkout main
  7. Merge issue_x with main branch: git merge <issue_x>
  8. Push changes to GitHub: git push origin main
  9. Confirm that issue closed in your GitHub repository's issues tab