You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running nxpm-stack init should work if there are no global git identity.
Current Behavior
It fails because there is no global git identity
Error: Command failed: git checkout -B main && git add . && git commit -am "Initial commit of @nxpm/stack"
Switched to a new branch 'main'
*** Please tell me who you are.
Run
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
Possible Solution
The CLI should check if these values exist. If not, it should set them with anonymous defaults.
Steps to Reproduce (for bugs)
nxpm sandbox base run
npm install -g @nxpm/cli
nxpm-stack init --name sandbox
The text was updated successfully, but these errors were encountered:
Expected Behavior
Running
nxpm-stack init
should work if there are no global git identity.Current Behavior
It fails because there is no global git identity
Possible Solution
The CLI should check if these values exist. If not, it should set them with anonymous defaults.
Steps to Reproduce (for bugs)
The text was updated successfully, but these errors were encountered: