This will be my first git use. I have added new files ( a lot ) to the folder/project ( git local repository).
I went through online tutorials and forums and see i can do
It sounds like git is launching your editor (probably vi
) so that you can type a commit message. If you are not familiar with vi
, it is easy to learn the basics. Alternatives are:
Use git commit -a -m "my first commit message"
to specify the commit message on the command line (using this will not launch an editor)
Set the EDITOR
environment variable to an editor that you are familiar with