In Gitlab project from the instructions, they tell how to add an existing_folder to Git repository.
But after I press git commit the console open a vim.
Then how can I go to the last one git push -u origin master and push my repository to gitlab.
cd existing_folder
git init
git remote add origin [remote url]
git add .
git commit
git push -u origin master