@minari got it almost right! just instead of git add * you need git add . which means adding all of the files in the current directory to git. Note that you don’t want certain files to be added to git repository like your api kyes and secret stuff, so add those files to .gitignore file. see this and this.
2
Answers
You can try type the command
git add *
in the project folder.If that doesn’t help, before that type
git init
@minari got it almost right! just instead of
git add *
you needgit add .
which means adding all of the files in the current directory to git. Note that you don’t want certain files to be added to git repository like your api kyes and secret stuff, so add those files to.gitignore
file. see this and this.