Skip to content

Commit

Permalink
fix: shorten commits hashes
Browse files Browse the repository at this point in the history
Signed-off-by: skjnldsv <[email protected]>
  • Loading branch information
skjnldsv committed Feb 15, 2024
1 parent c6ea517 commit 5b2f6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nextcloudUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ git checkout -b ${target}
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick ${commits.join(' ')}
git cherry-pick ${commits.map(commit => commit.slice(0, 8)).join(' ')}
# Push the cherry pick commit to the remote repository and open a pull request
git push origin ${target}
Expand Down

0 comments on commit 5b2f6a0

Please sign in to comment.