Skip to content

Commit

Permalink
Modify migration workflow to include another git add
Browse files Browse the repository at this point in the history
  • Loading branch information
sophschneider committed Oct 6, 2023
1 parent c4c19c2 commit 5e0c847
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ git stash push $(grep -r -l "polaris-migrator:" $(git ls-files -m))
git add .
# Format staged files only
git diff --staged --name-only | xargs npx prettier --write
# Stage formatted files
git add .
# Commit automatic migration
git commit -m "Migrate X custom properties from Polaris v11 to v12"
git commit -m "Migrate X from Polaris v11 to v12"
```

The polaris migrator could insert comments or skip instances that are unsafe to automatically migrate. You will need to resolve those issues in the next manual migration step.
Expand Down

0 comments on commit 5e0c847

Please sign in to comment.