Sunday, January 20, 2013

BitbucketでGit(2)

リポジトリを作ったら、まず設定を行う
$ git config --global user.name "username"
$ git config --global user.email "dummy@gmail.com"
$ git config --global color.ui auto

設定は↓のコマンドで確認できる
$ git config --list
or
$ cat ~/.gitconfig

リポジトリに登録したいディレクトリに移動して初期化
$ cd tmp
$ git init

リモートリポジトリの登録(リポジトリのURLを省略できる?
$ git remote add origin https://username@bitbucket.org/username/sample.git

登録されているリモートリポジトリを確認(-v で詳細
$ git remote -v

ローカルリポジトリの状態確認
$ git status

ファイルを追加/修正した場合
$ git add test.txt

変更をコミット
$ git commit -m update

ローカルリポジトリをリモートリポジトリへpush(初回の場合は master を指定
$ git push -u origin master

以上で、Bitbucketの方にリポジトリが登録される

man もあるのでそれ見るのがいいかも
$ man git-add
$ git help add
$ git add --help

SVNとちょっと似てるからいいけど、いきなりこれやったら覚えられなさそう

No comments:

Post a Comment