2014-01-15から1日間の記事一覧

local作業のリポジトリを共有リモートリポジトリへ移管する

git

先ずはlocalでコミットまで行う local $ git add . $ git commitremote側でpushされるリポジトリを作成 remote $ mkdir origin $ git init $ git config --bool core.bare true再びlocal側でremote登録、及びpushまで local $remote add origin ssh://user@a…