How to use created repository

Nicolás Alvarez nicolas.alvarez at gmail.com
Wed Jan 9 17:35:26 GMT 2019


> On 9 Jan 2019, at 13:24, Peter Grandcourt <peter.grandcourt at gmail.com> wrote:
> 
> Hi. 
> I have converted a large repository to git using the svn-all-fast-export. 
> But after the conversation there is no .git folder, and so I can’t run any git commands. 
> 
> I can’t find anything in the instructions that would help. 
> Any idea what to do next?
> 
> Thank you
> Peter
> 

The resulting repository is a "bare repository". It doesn't have a .git directory, it has the contents of the .git directory and no working copy. You can run git commands on it (did you try?), such as pushing it to a remote repository.

If you want to use it locally straight away, you have to clone it to get a working copy.

-- 
Nicolás


More information about the Kde-scm-interest mailing list