2010-03-23 gitでリモートリポジトリの登録方法 git ローカルリポジトリで次のコマンドをうつ。 $git remote add origin ssh://(ユーザ名)@(サーバIPアドレスまたはサーバ名)/(リポジトリへのパス) $git config branch.master.remote origin $git config branch.master.merge refs/heads/master また、git cloneでリポジトリを作成したなら、既にこの設定はされているので、必要はない。