Gary Yang <garyyang6@xxxxxxxxx> wrote: > Hi, > > I want to make a public repository. I followed the instructions in gitcore-tutorial. I typed "GIT_DIR=my-git.git git init" per instruction. But, I got command not found. I do not think this is the correct command. How should I do? I use C-Shell. > > http://manpages.ubuntu.com/manpages/intrepid/man7/gitcore-tutorial.html > > %mkdir my-git.git > %GIT_DIR=my-git.git git init > > GIT_DIR=my-git.git: Command not found. Instead you can do: $ git --git-dir=my-git.git init The --git-dir option does the same thing that GIT_DIR= was doing in a Bourne shell. -- Shawn. -- 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