On Sun, Jan 29, 2006 at 08:26:54PM +0300, Andrey Borzenkov wrote: > May be I do something wrong? What is correct procedure to initially import > tree? git 1.1.4 > > {pts/0}% git init-db > defaulting to local storage area > {pts/0}% git add . > {pts/0}% git commit -m 'initial import' It needs to know which paths to update. Probably you want to include all the files you added with the "git add", and you can do that just with -a: git commit -a -m "initial import" should do the job. The default commit command for me is usually just git commit -a. --b. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Mon Jan 30 05:17:00 2006
This archive was generated by hypermail 2.1.8 : 2006-01-30 05:17:10 EST