気軽に楽しくプログラムと遊ぶ

自分が興味があってためになるかもって思う情報を提供しています。

2015-06-07から1日間の記事一覧

git基本コマンド(リポジトリの初期化〜リモートリポジトリへの登録)

Git

gitリポジトリ初期化 $ git init ステージングエリアに登録 $ git add . ステージングエリアにあるファイルのリストを表示 $ git status 変更を保存 $ git commit -m "Initialize repository" masterブランチ用のoriginを登録 $ git remote add origin https…