I'm setting up the skeleton for my project, so I created some directories like this under my project root directory:
+src
|
+--- etc
| +--header.txt
|
+--- main
| |
| +--- java
| |
| +--- resources
|
+--- test
|
+--- java
|
+--- resources
I committed and push the changes but on my github repo web UI, I only see src/etc
src/main and src/test are not present!!!
Does git NOT allow pushing empty directories?
Is there any way to force this?
Thanks