Git stash issue in arm64

While adding Arm64 jobs in travis.yml for python-lz4 package, getting issue while running git stash command for pandas.
below is respective log, please have a look:

git stash --all:
fatal: empty ident name (for <travis@travis-job-ossdev07-python-lz4-318723584.(none)>) not allowed
863
Cannot save the current index state" 

Please suggest what could possibly be the reason for the same.

A quick search yields something like

1 Like

@BanzaiMan Thanks for the suggestion. I have tried both the solutions mentioned in the link but the issue remains same.

Please have a look at the logs:

$ rm -f .git/refs/stash
853
The command "rm -f .git/refs/stash" exited with 0.
854
0.51s
$ git stash --all
855
856
*** Please tell me who you are.
857
858
Run
859
860
  git config --global user.email "you@example.com"
861
  git config --global user.name "Your Name"
862
863
to set your account's default identity.
864
Omit --global to set the identity only in this repository.
865
866
fatal: empty ident name (for <travis@travis-job-ssps12-python-lz4-324191456.(none)>) not allowed
867
Cannot save the current index state
868
The command "git stash --all" exited with 1.
$ chown $USER:$GROUP .git
853
The command "chown $USER:$GROUP .git" exited with 0.
854
0.54s
$ git stash --all
855
856
*** Please tell me who you are.
857
858
Run
859
860
  git config --global user.email "you@example.com"
861
  git config --global user.name "Your Name"
862
863
to set your account's default identity.
864
Omit --global to set the identity only in this repository.
865
866
fatal: empty ident name (for <travis@travis-job-ssps12-python-lz4-324176886.(none)>) not allowed
867
Cannot save the current index state
868
The command "git stash --all" exited with 1.

Please suggest if I am missing something here.