2013年7月6日土曜日

git の使い方 (はじめて用)

※ リモートはbitbucketでSSH設定済みの例

リポジトリに追加したいディレクトリへ移動

cd /path/to/my/repo

初期化&コミット

$ git init
$ git add .
$ git commit -m "first commit"

ignoreみす

.gitignoreを適当に編集してから。

$ git rm -r --cached .
$ git add .
$ git commit -m "update .gitignore"

リモートリポジトリ設定

$ git remote add origin ssh://git@bitbucket.org/path/project.git

push

$ git push -u origin --all

ローカルリポジトリ削除

なんかいろいろみすったーときは、リポジトリルートの .git フォルダ を消せばOK

$ rm -rf .git

ssh 複数指定 (mac)

どうもうまくいかないと思っていたら、どうやらいちどHost に素のSSHでアクセスしておかないとあかんみたい

(うそん?ほんまはもっといい方法ある?)

~/.ssh/config に以下のような定義がある場合

Host bitbucket
  HostName bitbucket.org
  IdentityFile ~/.ssh/id_rsa.bitbucket.org
  User username

いっかいコマンドでつないでみておくとうまくいくかも。

$ ssh bitbucket
  • この記事をシェアする

  • このエントリーをはてなブックマークに追加
  • このブログの更新をチェックする

  • follow us in feedly

0 件のコメント:

コメントを投稿