Skip to content

Commit

Permalink
📝 add tagging process
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Runde <[email protected]>
  • Loading branch information
joerunde committed Mar 26, 2024
1 parent 3616cb3 commit 5b9a77a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions TGIS_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,14 @@ git push origin HEAD:main

To rebuild the ephemeral branch, we want to squash each pending PR into a commit on top of main.

Assuming this repo is the `origin` remote, this looks something like:
Assuming this repo is the `origin` remote and vllm-project/vllm is `upstream`, this looks something like:
```shell
# Fetch latest main
# Fetch latest mains
git fetch upstream main
git fetch origin main
git checkout origin/main

# Start a new ephemeral branch here
# Start a new ephemeral branch here at ibm:main
git branch -f ephemeral HEAD
git checkout ephemeral

Expand All @@ -91,4 +92,8 @@ git cherry-pick $SQUASH_HEAD

# force-push: we're overwriting the `ephemeral` branch
git push -f origin HEAD:ephemeral
```

# Create a tag to save this build
git tag ephemeral.$(git rev-parse --short HEAD)
git push origin ephemeral.$(git rev-parse --short HEAD)
```

0 comments on commit 5b9a77a

Please sign in to comment.