I am new to git and GitHub. I have created some git repos on my local computer. Now I want to get what I think is called mirrors of these repos onto GitHub so I can keep them synced with the repos on my local machine. I thought cloning was the way to do this. It looks like it is working during the bash session but when I go to my GitHub Account I can see no sign of the new-project repo. I can see the repo I made from within GitHub. I have pasted the bash session below. Any help would be very much appreciated. steve@laptop ~ $ ls dir1 project steve@laptop ~ $ ls dir2 steve@laptop ~ $ git clone dir1/project dir2/new-project Cloning into 'dir2/new-project'... done. steve@laptop ~ $ ls dir2 new-project steve@laptop ~ $ git clone dir1/project https://github.com/stevespages/new-project Cloning into 'https://github.com/stevespages/new-project'... done. steve@laptop ~ $
... View more