Git author Unknown

后端 未结 5 904
南方客
南方客 2020-12-08 00:37

my author name in all my commits is coming up as unknown https://github.com/freeenergy/Teacher-Login-Validation-Module

did this

$ git config         


        
5条回答
  •  离开以前
    2020-12-08 01:14

    I had to change the repository config file. Run from repository path :

    > git config --local -e 
    

    and add the whole section :

    [user]
        name = Anna Kowalska
        email = anna.kowalska@wp.pl
    

提交回复
热议问题