$ git config --global user.name "username" $ git config --global user.email "dummy@gmail.com" $ git config --global color.ui auto
設定は↓のコマンドで確認できる
$ git config --listor
$ 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