No author information was supplied by the version control systemIs there a “theirs” version of “git merge -s ours”?How can I reset or revert a file to a specific revision?View the change history of a file using Git versioningIs there a quick Git command to see an old version of a file?How to change the author and committer name and e-mail of multiple commits in Git?How do you roll back (reset) a Git repository to a particular commit?How to change the commit author for one specific commit?How to use git merge --squash?How can I reconcile detached HEAD with master/origin?Git push rejected after feature branch rebase
Does the problem of P vs NP come under the category of Operational Research?
Speaker impedance: rewiring four 8 Ω speakers for use with 8 Ω amp output
How does Rust's 128-bit integer `i128` work on a 64-bit system?
On the expression "sun-down"
Subverting the essence of fictional and/or religious entities; is it acceptable?
A verb for when some rights are not violated?
A wiild aanimal, a cardinal direction, or a place by the water
Can't understand an ACT practice problem: Triangle appears to be isosceles, why isn't the answer 7.3~ here?
What is a summary of basic Jewish metaphysics or theology?
Is Norway in the Single Market?
Search and replace a substring only if another substring is not present
Generate random number in Unity without class ambiguity
Empty proof as standalone
Meaning of ギャップ in the following sentence
Does WSL2 runs Linux in a virtual machine or alongside windows Kernel?
How long should I wait to plug in my refrigerator after unplugging it?
How to transform a function from f[#1] to f[x]
Can there be multiple energy eigenstates corresponding to the same eigenvalue of a Hamiltonian (Pauli-X)?
Being told my "network" isn't PCI compliant. I don't even have a server! Do I have to comply?
Can an unintentional murderer leave Ir Miklat for Shalosh Regalim?
Why are sugars in whole fruits not digested the same way sugars in juice are?
Using Forstner bits instead of hole saws
What license to choose for my PhD thesis?
What is the most 'environmentally friendly' way to learn to fly?
No author information was supplied by the version control system
Is there a “theirs” version of “git merge -s ours”?How can I reset or revert a file to a specific revision?View the change history of a file using Git versioningIs there a quick Git command to see an old version of a file?How to change the author and committer name and e-mail of multiple commits in Git?How do you roll back (reset) a Git repository to a particular commit?How to change the commit author for one specific commit?How to use git merge --squash?How can I reconcile detached HEAD with master/origin?Git push rejected after feature branch rebase
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I just updated my Xcode to version 10.2 (10E125).
A moment I want to commit, I get this message:
After I click on fix:
I have filled in the information, but I’m still getting that message above.
What's the reason?
swift xcode git xcode10 swift5
add a comment |
I just updated my Xcode to version 10.2 (10E125).
A moment I want to commit, I get this message:
After I click on fix:
I have filled in the information, but I’m still getting that message above.
What's the reason?
swift xcode git xcode10 swift5
Use the command line instead?
– matt
Mar 27 at 2:10
@matt It would be lovely if we can use both (UI and command line)
– Nizzam
Mar 27 at 2:26
I get the same error when trying to commit items (marked with a "!"), that does not exists on disk nor on server (I cannot discard items either). I do not get the error on files that exists.
– Kim Rasmussen
Jun 13 at 12:39
add a comment |
I just updated my Xcode to version 10.2 (10E125).
A moment I want to commit, I get this message:
After I click on fix:
I have filled in the information, but I’m still getting that message above.
What's the reason?
swift xcode git xcode10 swift5
I just updated my Xcode to version 10.2 (10E125).
A moment I want to commit, I get this message:
After I click on fix:
I have filled in the information, but I’m still getting that message above.
What's the reason?
swift xcode git xcode10 swift5
swift xcode git xcode10 swift5
edited Apr 17 at 6:07
Philip Borbon
1046 bronze badges
1046 bronze badges
asked Mar 27 at 1:31
NizzamNizzam
3545 silver badges19 bronze badges
3545 silver badges19 bronze badges
Use the command line instead?
– matt
Mar 27 at 2:10
@matt It would be lovely if we can use both (UI and command line)
– Nizzam
Mar 27 at 2:26
I get the same error when trying to commit items (marked with a "!"), that does not exists on disk nor on server (I cannot discard items either). I do not get the error on files that exists.
– Kim Rasmussen
Jun 13 at 12:39
add a comment |
Use the command line instead?
– matt
Mar 27 at 2:10
@matt It would be lovely if we can use both (UI and command line)
– Nizzam
Mar 27 at 2:26
I get the same error when trying to commit items (marked with a "!"), that does not exists on disk nor on server (I cannot discard items either). I do not get the error on files that exists.
– Kim Rasmussen
Jun 13 at 12:39
Use the command line instead?
– matt
Mar 27 at 2:10
Use the command line instead?
– matt
Mar 27 at 2:10
@matt It would be lovely if we can use both (UI and command line)
– Nizzam
Mar 27 at 2:26
@matt It would be lovely if we can use both (UI and command line)
– Nizzam
Mar 27 at 2:26
I get the same error when trying to commit items (marked with a "!"), that does not exists on disk nor on server (I cannot discard items either). I do not get the error on files that exists.
– Kim Rasmussen
Jun 13 at 12:39
I get the same error when trying to commit items (marked with a "!"), that does not exists on disk nor on server (I cannot discard items either). I do not get the error on files that exists.
– Kim Rasmussen
Jun 13 at 12:39
add a comment |
2 Answers
2
active
oldest
votes
You can set the author information using Terminal. It might be possible that xCode has the author data but it's not actually set in Git config.
Setting your Git username for every repository on your computer
1) Open Terminal.
2) Set a Git username:
$ git config --global user.name "Mona Lisa"
3) Confirm that you have set the Git username correctly:
$ git config --global user.name
> Mona Lisa
Setting your Git username for a single repository
1) Open Terminal.
2) Change the current working directory to the local repository where you want to configure the name that is associated with your Git commits.
3) Set a Git username:
$ git config user.name "Mona Lisa"
4) Confirm that you have set the Git username correctly:
$ git config user.name
> Mona Lisa
Source: https://help.github.com/en/articles/setting-your-username-in-git
add a comment |
Click on "Fix" and provide your Git username and email. This fixed my issue.
As you can see from the question, I also clicked onFIX
and fill in the information. But the message re-appear once I want to commit again.
– Nizzam
Apr 26 at 2:37
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368503%2fno-author-information-was-supplied-by-the-version-control-system%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can set the author information using Terminal. It might be possible that xCode has the author data but it's not actually set in Git config.
Setting your Git username for every repository on your computer
1) Open Terminal.
2) Set a Git username:
$ git config --global user.name "Mona Lisa"
3) Confirm that you have set the Git username correctly:
$ git config --global user.name
> Mona Lisa
Setting your Git username for a single repository
1) Open Terminal.
2) Change the current working directory to the local repository where you want to configure the name that is associated with your Git commits.
3) Set a Git username:
$ git config user.name "Mona Lisa"
4) Confirm that you have set the Git username correctly:
$ git config user.name
> Mona Lisa
Source: https://help.github.com/en/articles/setting-your-username-in-git
add a comment |
You can set the author information using Terminal. It might be possible that xCode has the author data but it's not actually set in Git config.
Setting your Git username for every repository on your computer
1) Open Terminal.
2) Set a Git username:
$ git config --global user.name "Mona Lisa"
3) Confirm that you have set the Git username correctly:
$ git config --global user.name
> Mona Lisa
Setting your Git username for a single repository
1) Open Terminal.
2) Change the current working directory to the local repository where you want to configure the name that is associated with your Git commits.
3) Set a Git username:
$ git config user.name "Mona Lisa"
4) Confirm that you have set the Git username correctly:
$ git config user.name
> Mona Lisa
Source: https://help.github.com/en/articles/setting-your-username-in-git
add a comment |
You can set the author information using Terminal. It might be possible that xCode has the author data but it's not actually set in Git config.
Setting your Git username for every repository on your computer
1) Open Terminal.
2) Set a Git username:
$ git config --global user.name "Mona Lisa"
3) Confirm that you have set the Git username correctly:
$ git config --global user.name
> Mona Lisa
Setting your Git username for a single repository
1) Open Terminal.
2) Change the current working directory to the local repository where you want to configure the name that is associated with your Git commits.
3) Set a Git username:
$ git config user.name "Mona Lisa"
4) Confirm that you have set the Git username correctly:
$ git config user.name
> Mona Lisa
Source: https://help.github.com/en/articles/setting-your-username-in-git
You can set the author information using Terminal. It might be possible that xCode has the author data but it's not actually set in Git config.
Setting your Git username for every repository on your computer
1) Open Terminal.
2) Set a Git username:
$ git config --global user.name "Mona Lisa"
3) Confirm that you have set the Git username correctly:
$ git config --global user.name
> Mona Lisa
Setting your Git username for a single repository
1) Open Terminal.
2) Change the current working directory to the local repository where you want to configure the name that is associated with your Git commits.
3) Set a Git username:
$ git config user.name "Mona Lisa"
4) Confirm that you have set the Git username correctly:
$ git config user.name
> Mona Lisa
Source: https://help.github.com/en/articles/setting-your-username-in-git
answered Mar 27 at 6:09
Philip BorbonPhilip Borbon
1046 bronze badges
1046 bronze badges
add a comment |
add a comment |
Click on "Fix" and provide your Git username and email. This fixed my issue.
As you can see from the question, I also clicked onFIX
and fill in the information. But the message re-appear once I want to commit again.
– Nizzam
Apr 26 at 2:37
add a comment |
Click on "Fix" and provide your Git username and email. This fixed my issue.
As you can see from the question, I also clicked onFIX
and fill in the information. But the message re-appear once I want to commit again.
– Nizzam
Apr 26 at 2:37
add a comment |
Click on "Fix" and provide your Git username and email. This fixed my issue.
Click on "Fix" and provide your Git username and email. This fixed my issue.
answered Apr 25 at 6:09
ak_ninanak_ninan
2621 silver badge11 bronze badges
2621 silver badge11 bronze badges
As you can see from the question, I also clicked onFIX
and fill in the information. But the message re-appear once I want to commit again.
– Nizzam
Apr 26 at 2:37
add a comment |
As you can see from the question, I also clicked onFIX
and fill in the information. But the message re-appear once I want to commit again.
– Nizzam
Apr 26 at 2:37
As you can see from the question, I also clicked on
FIX
and fill in the information. But the message re-appear once I want to commit again.– Nizzam
Apr 26 at 2:37
As you can see from the question, I also clicked on
FIX
and fill in the information. But the message re-appear once I want to commit again.– Nizzam
Apr 26 at 2:37
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368503%2fno-author-information-was-supplied-by-the-version-control-system%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Use the command line instead?
– matt
Mar 27 at 2:10
@matt It would be lovely if we can use both (UI and command line)
– Nizzam
Mar 27 at 2:26
I get the same error when trying to commit items (marked with a "!"), that does not exists on disk nor on server (I cannot discard items either). I do not get the error on files that exists.
– Kim Rasmussen
Jun 13 at 12:39