quanth
quanth

Reputation: 11

Git not add files to repository

I have repository on bitbucket. When I import new module,I cannot add the files and folder to repository. In bitbucket here's how it looks: here

The path MemorizingTrustManager is empty, I cannot add folders and files under that to repository. I'm using git add * but it doens't work. Please help me. Thanks

Upvotes: 0

Views: 117

Answers (2)

Nguyen Sy Thanh Son
Nguyen Sy Thanh Son

Reputation: 5376

You should go to MemorizingTrustManager folder. and looking for .git folder and delete it.

After that, you go back to rood folder and do some add command

git add .

git commit -m 'add something'

Upvotes: 0

Hussain Alaidarous
Hussain Alaidarous

Reputation: 104

Use

git add .

Then you have to

git commit -m "something"

Then

git push <branch> <ref>

Upvotes: 1

Related Questions