S
S
Sv-Alecs2020-03-12 09:00:25
git
Sv-Alecs, 2020-03-12 09:00:25

How to run git config --global user.email "[email protected]" in VS Code?

How to enter this code step by step. I tried everything. Somewhere I make a mistake.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
NeKt0, 2020-03-15
@bubn0ff

What exactly have you tried?
First, enter this in the console:
git config --global user.name "FIRST_NAME LAST_NAME",
and only then this:
git config --global user.email "[email protected]".
Again, if the --global option is specified, then you only need to make these settings once, because then Git will use this data for everything you do on that system.
To see all the settings and find out exactly where they are set, use the command:
git config --list --show-origin
More details: here .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question