git pull ownedName ownedBranch
git push ownedName ownedBranch
サーバの場合は、さらに pull する
更新情報のみの repository (bare) を作成し、 それが git サーバになる。 local git で repository と同期する。
mkdir ownedGit cd ownedGit git init --bare --shared
git clone "path_To_ownedGit"
git clone ssh://userName@gitServerAddress/"path_To_ownedGit"
git remote -v
git remote remove "repositoryName"
“repositoryName” は “git remote -v” の出力結果の1列目。default は、“origin”。