On Wed, Aug 26, 2009 at 1:05 AM, syn hedionn<synhedionn@xxxxxxxxx> wrote: > ok , but if I put, > git add index.htm > I have: > fatal: Not a git repository You need to initialize the repository before you can add files to it, so: git init git add index.htm git commit -m "Initial commit" The zit way would be: zit track index.htm zit commit -m "Initial commit" index.htm -- Giuseppe "Oblomov" Bilotta -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html