Posts by Lucio • 185 points
3 posts
-
2
votes2
answers7146
viewsA: How to make buttons of various formats in java?
In my opinion, you are asking three different questions. I will answer only one of them. Round button The class Border Swing offers the possibility of using a radio: private static class…
-
1
votes2
answers2639
viewsQ: How to add an empty directory to a remote git repository?
I have a PHP application that needs to upload photos to a remote directory, but this directory needs to be created earlier in the repository so that these files can be uploaded. But when I send this…
-
5
votes2
answers2639
viewsA: How to add an empty directory to a remote git repository?
Git doesn’t allow empty directories. But you can generate a hidden file within the directory to upload that directory. Most people do this procedure by generating a file called .gitignore This way,…