I encounter an issue when I create a bare repository. Here is my step:
- Create a folder named
Test
in aC:\
as a remote repository - Create repository in sourcetree and select
C:\Test
- Input command
git init --bare
in terminal - Clone
C:\Test
to my local folderD:\Test
However, I can't see master branch in both C:\Test
and D:\Test
. How can I create a master branch? Thanks
PS: my C:\Test
has hooks, info, objects, refs, config, description, HEAD. Do I need to check in them and make them as master branch?