2012年10月4日木曜日

Ubuntu で github

githubについて忘れないようにするためのメモ

●リポジトリを作成するには

-自分のgithub のwebページでリポジトリを作成(Create)する。リポジトリ名をStockDbとする。

-ローカルのマシンで以下のように入力
     mkdir  StockDb

-    cd StockDb

-    touch README.md

-    git init

-    git add README.md

-    git commit -m "first commit"

- github のユーザ名をcofearabiとすると以下のように入力
     git remote add origin https://github.com/cofearabi/StockDb.git

-    git push -u origin master

 

●github のリポジトリのクローンをローカルに作成するには例えば以下のように入力する

-    git clone https://github.com/cofearabi/StockDb.git



参考にさせていただいたサイト

https://help.github.com/articles/fork-a-repo





0 件のコメント:

コメントを投稿