Its a java project, i need to upload all the contents in a folder not just the source files
Asked
Active
Viewed 454 times
1

Himagaran
- 312
- 2
- 14
-
And where is the problem? – Jens Apr 27 '17 at 14:03
-
1Possible duplicate: http://stackoverflow.com/questions/40720141/how-to-upload-folders-on-github – EsotericVoid Apr 27 '17 at 14:05
2 Answers
0
git add .
then just push without a .gitignore and entries in your .git/info/exclude
file.

Cedric
- 532
- 5
- 7
0
you can use the following command to have a try:
git add folders_name/*.*
git add folders_name/*

ccpizza
- 28,968
- 18
- 162
- 169

swordsmanye
- 1
- 2