0

Git(VCSツール)のこれらのコマンドの違いは何ですか?

$ git init --bare
$ git init --bare --shared
$ git init --bare --shared=group

説明していただけませんか?

4

1 に答える 1

1

マニュアルページから:

   --shared[=(false|true|umask|group|all|world|everybody|0xxx)]
       Specify that the git repository is to be shared amongst several users. This allows users belonging to the same group to push into that repository. When
       specified, the config variable "core.sharedRepository" is set so that files and directories under $GIT_DIR are created with the requested permissions. When
       not specified, git will use permissions reported by umask(2).

あなたは正確に何について困惑していますか?

于 2012-12-03T08:06:38.813 に答える