1

ここの例に従っています http://wiki.dreamhost.com/Git

基本的に、デスクトップからサーバーにプッシュできるgitリポジトリを作成したい...ホスト上:

[host ~]$ mkdir project.git
[host ~]$ cd project.git
[host project.git]$ git init --bare
[host project.git]$ exit

次に、ローカルで:

[local ~]$ cd project
[local project]$ git init
[local project]$ touch .gitignore
[local project]$ git add .
[local project]$ git commit

ホスト上でディレクトリに CD を挿入すると、次のファイルが表示されます (通常は .git ディレクトリにあります)。

HEAD  branches  config  description  hooks  info  objects  refs

次に、ローカルでリモート プッシュを作成します: git remote add origin ssh://XXX@XXX/home/XXX/XXX/

Counting objects: 3, done.
Writing objects: 100% (3/3), 210 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)

ただし、サーバーの作業フォルダーに戻ると、そこには何もありません..上記の .git ファイルだけです。

私は以前にこれを行ったことがあり、このように機能しました...今回は何か間違ったことをしているに違いありません。

アップデート

--bare なしでサーバー上にレポを作成しようとすると、プッシュ時にこのエラーが発生します

remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error: 
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error: 
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.

更新と解決....

これは本当にうまく機能することがわかりました http://toroid.org/ams/git-website-howto

基本的に --bare を使用してから、最新のコミットを作業ディレクトリにコピーするフックを使用してください!

4

2 に答える 2

3

あなたが見るものは正しいようです。そのフォルダー (およびオブジェクト ディレクトリ内の多くのファイル) に表示される .git ファイルには、すべての git リポジトリが含まれています。

「ベア」リポジトリを作成すると、他の人がそこ (ホスト マシン上) でファイルを直接編集できなくなります。すべてのソース ファイルでプロジェクトをチェックアウトしないことは、そのような編集を妨げるものの 1 つです。

于 2012-07-17T14:45:42.293 に答える
2

git init --bare作業ディレクトリが関連付けられていない「ベア」リポジトリを作成します。あなたが見ているものは期待されているものです。チェックアウトされた作業ディレクトリが関連付けられている別のリポジトリが必要な場合は、--bareオプションを使用しないgit pushでください。リモートにある可能性のあるステージングされていない/コミットされていない変更が失われるのを防ぎます。

于 2012-07-17T14:51:05.023 に答える