1

Its a java project, i need to upload all the contents in a folder not just the source files

Himagaran
  • 312
  • 2
  • 14

2 Answers2

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