-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: create new project with clean git repo #68
Conversation
@beeman you will notice I have added Some ideas of how to perform it automatically:
And that will be enough to fix the affected hunky hook process. What do you think? what do you recommend? I created a new issuie #69 in order to follow this up |
4da4144
to
c60036d
Compare
Nx Cloud ReportCI ran the following commands for commit de59e70. Click to see the status, the terminal output, and the build insights.
Sent with 💌 from NxCloud. |
c60036d
to
de59e70
Compare
Thanks a lot @ruslanguns 👍 |
@@ -56,6 +56,10 @@ export async function workspaceInit({ | |||
const initProject = `yarn nx g @nxpm/stack:init web --web-style-library ${webStyleLibrary}` | |||
runCommand(initProject, target) | |||
|
|||
log('Rewriting git history') | |||
const rewritingGitHistory = `git commit --amend -CHEAD --no-verify` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--no-verify
added for avoiding the error of base branch.
This will close #55