Hi,

i don't know if i missed somehting as a prerequisite, but it seems that the GIT repository is empty.
When i try to git clone, i get a warning (in french) saying that the repository is empty and in fact the .git dir is created but it seems not really populated with files and data:

$ git clone https://git.code.sf.net/p/tac-plus/code tac-plus-code
Clonage dans 'tac-plus-code'...
warning: Vous semblez avoir cloné un dépôt vide.

~/tac-plus-code$ ls -la
total 12
drwxrwxr-x 3 florian florian 4096 nov.   7 12:08 .
drwxrwxr-x 3 florian florian 4096 nov.   7 12:08 ..
drwxrwxr-x 7 florian florian 4096 nov.   7 12:08 .git

~/tac-plus-code$ ls -la .git/
total 64
drwxrwxr-x 7 florian florian 4096 nov.   7 12:08 .
drwxrwxr-x 3 florian florian 4096 nov.   7 12:08 ..
drwxrwxr-x 2 florian florian 4096 nov.   7 12:08 branches
-rw-rw-r-- 1 florian florian  279 nov.   7 12:08 config
-rw-rw-r-- 1 florian florian   73 nov.   7 12:08 description
-rw-rw-r-- 1 florian florian   23 nov.   7 12:08 HEAD
drwxrwxr-x 2 florian florian 4096 nov.   7 12:08 hooks
drwxrwxr-x 2 florian florian 4096 nov.   7 12:08 info
drwxrwxr-x 4 florian florian 4096 nov.   7 12:08 objects
drwxrwxr-x 4 florian florian 4096 nov.   7 12:08 refs



~/tac-plus-code$ cat .git/description
Unnamed repository; edit this file 'description' to name the repository.

~/tac-plus-code$ cat .git/config
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        url = https://git.code.sf.net/p/tac-plus/code
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master
        rebase = true

~/tac-plus-code$ ls -la .git/branches/
total 8
drwxrwxr-x 2 florian florian 4096 nov.   7 12:08 .
drwxrwxr-x 7 florian florian 4096 nov.   7 12:08 ..


~/tac-plus-code$ git status
Sur la branche master

Aucun commit

rien à valider (créez/copiez des fichiers et utilisez "git add" pour les suivre)

~/tac-plus-code$ git log
fatal: votre branche actuelle 'master' ne contient encore aucun commit

Are you aware of that ?
Is it normal (meaning is it only to have a "starting point" and i'll have to untar last .tar.gz archive first, then git clone to retrive meta information about repo only if i want to collaborate ) ?

Thanks in advance, and sorry for my lack of knowledge of sourcefourge.