I am a GitHub newbe. I've created a project on my computer in a folder named "SpettroCorpoNero", which contains a file "SpettroCorpoNero.ipynb". Now I would like to initializate it into my GitHub account. For this purpose I wrote on my git (which is on Linux) the following lines of code:
git init (which should initializate my project) git status (Which shows in red the new files I would like to replicate on my GitHub account) git add SpettroCorpoNero.ipynb (which is the list of file to put in the "basket") git commit -m "That's BlackBodySpectrum" (That looks like another basket to put in) git push And the code looks like working up to the second last line of code. Than the following message of error I've received
fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add <name> <url> and then push using the remote name git push <name> In order to sort it out, different attempts I've done, such as following that push with my nickname (which is Stefanovic80), as suggested in the message of error. But I failed in all of them and now I fill confused and disoriented.
Is there anyone who could fix this issue, please?
the git remote addmeans. once you add the repository details you will be able to push it using thegit pushcommand.