I have created a repository on github and now I wish to add a folder with info in that existing folder. How to do it ??
Asked
Active
Viewed 28 times
-1
-
1I'm not sure what you're asking. The folder is controlled by Git. You can just `commit` and `push` the changes. – Obsidian Age May 06 '22 at 04:38
-
1Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community May 06 '22 at 05:14
-
3Note that [Git does not store folders](https://stackoverflow.com/q/115983/1256452), only files. If you have a committed file whose name is `path/to/file.ext`, Git knows that the OS requires creating a folder named `to` inside a folder named `path` in which to create a file named `file.ext`, but Git only *implies* the `path` and `path/to` parts with the forward slashes in the file's name. – torek May 06 '22 at 05:37