I read the great git tutorial here, I\'m unable to create directories.
My folder structure is:
Code - Python - C++ - F# - ...
From withi
Git won't commit empty directories. There must be files in the directories first.
Try to add some files to directories first. You can add some dummy file to directory, and remove that file when you have added the actual content for the directory.
Git does not track empty directories, it tracks files and their contents.
git init
mkdir foo
touch foo/dummy_empty_file
git add foo
git add foo/dummy_empty_file
git commit -m "adding files"