There is an error message if Git doesn't know the identity (name and email) to use for commits. This is a common issue for users when they first initialize a new repository or start using Git on a new machine.
If the gits super_init command is trying to create an initial commit after initializing the repository, it fails in case Git doesn't have a name and email configured.
Improve the code by adding a section that prompts the user for their name and email, and then sets these for the Git configuration so that error does nor appear.
There is an error message if Git doesn't know the identity (name and email) to use for commits. This is a common issue for users when they first initialize a new repository or start using Git on a new machine.
If the gits super_init command is trying to create an initial commit after initializing the repository, it fails in case Git doesn't have a name and email configured.
Improve the code by adding a section that prompts the user for their name and email, and then sets these for the Git configuration so that error does nor appear.