Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] How to clone an empty remote repo or push without cloning before?

>Instead what you want to do is use git init bare:

>
>  mkdir my-project.git
>  cd my-project.git
>  git init --bare

Thanks!!! It works.
I knew I was missing some understanding of git.

(one hint for other newbies: use "git --bare init", not "git init --bare". at 
least my git tool refuses to work with the second command)

Mark





Back to the top