-
-
Notifications
You must be signed in to change notification settings - Fork 39
fix: remove --global flag when setting user #66
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
🦋 Changeset detectedLatest commit: dbfcfac The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
This is strange, what is the content? A Do you have any global And also, if a |
I think this may be the intended behaviour for git in CI. From the doc here, I guess
This is not true, this file belongs to per user, it's not in project scope,
Nope, I don't have a local
Not sure if it will be affected, from the doc, we can see, local So have you met this problem already ? |
I have never met the issue you mentioned, but sure I just find changesets/action#128, so I believe you're right here! Thanks! |
use command like this
git config --global user.name
would create a.gitconfig
file every time when creating a MR, which is unnecessary and may cause error. Local git config is enough, tested in my own gitlab repo.