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;








6















I just updated my Xcode to version 10.2 (10E125).



A moment I want to commit, I get this message:



enter image description here



After I click on fix:



enter image description here



I have filled in the information, but I’m still getting that message above.



What's the reason?










share|improve this question


























  • 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

















6















I just updated my Xcode to version 10.2 (10E125).



A moment I want to commit, I get this message:



enter image description here



After I click on fix:



enter image description here



I have filled in the information, but I’m still getting that message above.



What's the reason?










share|improve this question


























  • 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













6












6








6








I just updated my Xcode to version 10.2 (10E125).



A moment I want to commit, I get this message:



enter image description here



After I click on fix:



enter image description here



I have filled in the information, but I’m still getting that message above.



What's the reason?










share|improve this question
















I just updated my Xcode to version 10.2 (10E125).



A moment I want to commit, I get this message:



enter image description here



After I click on fix:



enter image description here



I have filled in the information, but I’m still getting that message above.



What's the reason?







swift xcode git xcode10 swift5






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












2 Answers
2






active

oldest

votes


















5














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






share|improve this answer
































    1














    Click on "Fix" and provide your Git username and email. This fixed my issue.






    share|improve this answer

























    • 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













    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
    );



    );













    draft saved

    draft discarded


















    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









    5














    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






    share|improve this answer





























      5














      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






      share|improve this answer



























        5












        5








        5







        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






        share|improve this answer













        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







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 6:09









        Philip BorbonPhilip Borbon

        1046 bronze badges




        1046 bronze badges


























            1














            Click on "Fix" and provide your Git username and email. This fixed my issue.






            share|improve this answer

























            • 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















            1














            Click on "Fix" and provide your Git username and email. This fixed my issue.






            share|improve this answer

























            • 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













            1












            1








            1







            Click on "Fix" and provide your Git username and email. This fixed my issue.






            share|improve this answer













            Click on "Fix" and provide your Git username and email. This fixed my issue.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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 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
















            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

















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript