Home > Software design >  Why .java file shows as .class file in src folder in github repository?
Why .java file shows as .class file in src folder in github repository?

Time:09-23

I am committing a Java project to a GitHub repository from IntelliJ IDEA. I pushed my project to the Git repo, but when I viewed the src folder, all .java files shows up as .class files. What should I do?

These are the files in the src folder:

files in folder

Also, I cannot view the code itself in Github when I view a specific file.

EDIT: Sorry I was looking another directory not src folder. Anyways thanks for answers)

here is the screenshot of it

CodePudding user response:

you can ignore the .class files folder when using git to push your process

  • Related