7
4
I have a folder with all my files set up for a project. I decided to use git on that folder, so I created on Github an empty repo. Usually the procedure is to clone on my local disk the remote repo, and in this case it will create an empty folder. But, what I want to do is to fill the remote repo with my project folder without harming and without moving it. Is there a procedure to do that?
Thanks. I followed your procedure, but at step 9 I got this error: ! [rejected] master -> master (non-fast-forward) It says I have to use git pull first, I did, but I got the following: There is no tracking information for the current branch. Please specify which branch you want to merge with. Anyway, I'm scared that this "git pull" could overwrite my current dir. Am I missing something? – user840718 – 2019-03-07T11:21:17.307
1
It seems you have already some files on the remote repository. If you don't care about the remove one, then please read https://stackoverflow.com/questions/5509543/how-do-i-properly-force-a-git-push, or you can pull your remote data to an empty local folder, copy to it what you want, then push
– Ahmed Ashour – 2019-03-07T11:25:02.2331It worked with the --force option. Thanks. – user840718 – 2019-03-07T11:36:31.900