I'm trying to upload a project folder to a specific location on a private repo using the terminal, but the process I'm following doesn't seem to work. Particularly, the folder where I want to upload the file has the following path:
https://github.com/username/repo_name/tree/master/folder_where_I_want_to_upload_another_folder
I tried to do the following in the local folder:
git init
git add .
git commit -m "my commit"
git remote add origin <remote repository folder URL>
git push origin master
Any idea on how to solve this?
The way that I would handle this is by first cloning the repo with
git clone https://github.com/username/repo_name.gitThen from here, If the
folder_where_I_want_to_upload_another_folderdoesn't exist, you would need to create it. Add your files/folders that you want uploaded here.If you just want to upload an empty folder though, you can't. From the git FAQs :
So now knowing this, add an empty
.gitignoreor, what I like even better, is to add a readme explaining the purpose of having an empty folder.Then from the root of the repo, run