Reputation: 11
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
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
Reputation: 104
Use
git add .
Then you have to
git commit -m "something"
Then
git push <branch> <ref>
Upvotes: 1