一覧 最終更新 HOME ログイン

freedomcat.com

Git

リモートリポジトリ
さくらのレンサバ
クライアント
Windows10 bash on Ubuntu

事前設定

リモートリポジトリの作成

ssh example.com
mkdir git
mkdir git/test.git
cd ~/git/test.git
git init --bare

リモートリポジトリとローカルリポジトリを結び付ける

クライアント側で次のコマンドを打つ。

cd ローカルのリポジトリのある場所
git remote add origin ssh://example.com/home/example/git/test.git
git remote -v
git push origin master:master

参考 https://qiita.com/michimani/items/deaa779971454439cb6d