Skip to content

github stuff #2

@rosikand

Description

@rosikand

Use a separate branch for your work. That is the simplest workflow that stays safe.

Recommended setup:

  • main on your fork = clean mirror of upstream/main
  • my-work branch = where you actually code

Practical flow:

  1. Update local main from upstream
git checkout main
git fetch upstream 
git merge upstream/main
git push origin main
  1. Do your work on a branch
git checkout -b my-work
# edit, commit
git push origin my-work
  1. When upstream changes, bring them into your branch
git fetch upstream
git checkout main
git merge upstream/main
git checkout my-work
git merge main
  1. Open PR from my-work on your fork to openai/parameter-golf:main

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions