Reputation: 3026
I have used the Github desktop application to manage my Github repository. I have the following folder structure:
myRepo/
config/
mappings/
src/
bin/
eclipse/
lib/
README.md
LICENSE.md
How would I go about making src
the main folder of my repository so it will only commit files inside src
while retaining the files README.md
and LICENSE.md
while still having the files inside src
inside the src
folder, like this:
Thanks in advance.
Upvotes: 1
Views: 650
Reputation: 31567
Maybe you should ignore folder other than src
.
### project ###
config
mappings
bin
eclipse
lib
### Eclipse ###
.project
.metadata
.classpath
.settings/
Read more:
Use tools:
Upvotes: 2