haiju's 開発メモ

開発に必要な情報を自分用にメモ

ssh接続でプライベートリポジトリにバックアップ作成

ようやくBitbucketにssh接続できるようになったので、

ローカルのターミナル環境からブラウザにアクセスせず

sshのみでバックアップしてみるテスト。

[手順]

1. バックアップしたいプロジェクトディレクトリへ移動し、以下実行。

% cd helloFParsecTest

% git init

Initialized empty Git repository in $HOME/workspace/helloFParsecTest/.git/

2. リモートのマスターリポジトリを設定。

% git remote add origin ssh://git@bitbucket.org/username/hellofparsectest.git

3. 1のプロジェクトを2に追加、push。

% git add .

% git commit
[master (root-commit) 40f7f14] helloFParsecTest created
6 files changed, 127 insertions(+)
create mode 100644 helloFParsecTest.sln
create mode 100644 helloFParsecTest.userprefs
create mode 100644 helloFParsecTest/AssemblyInfo.fs
create mode 100644 helloFParsecTest/Main.fs
create mode 100644 helloFParsecTest/MainWindow.fs
create mode 100644 helloFParsecTest/helloFParsecTest.fsproj

% git push origin master

Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 2.38 KiB | 0 bytes/s, done.
Total 9 (delta 0), reused 0 (delta 0)
To ssh://bitbucket.org/username/hellofparsectest.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.

[参考サイト]

qiita.com