1

I have a repository on bitbucket. The repository has two directories with files in it. After committing these directories git is showing me some kind of hash code for those files.

enter image description here

I expect that the directory names should be hyperlinks and I should be able to browse them on bitbucket.

On cloning the repository to my local system it is giving me empty directories.

What is happening here?

Kshitiz Sharma
  • 17,947
  • 26
  • 98
  • 169

1 Answers1

1

You need to initialize and update those git submodules:

git submodule update --init

(See git submodule man page)

Those SHA1 are gitlink, special entries in the index.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250