Git

1c18bbf0 :Anonymous 2015-03-24 05:42
>>c71c1d34
■新しいフォルダ(Proj)作ったら
$ git init ( 初期化: .git フォルダが出来る )
$ git add . ( 管理したいファイルを追加 )
$ git commit -m "最初のコミット" ( コミットして変更を登録する )
$ git remote add origin (URL) ( github のURLを設定 )
$ git push -u origin master ( github に送信する )

■次回からの作業
(ファイルを変更)
$ git status ( 変更ファイルの一覧を確認 )
$ git diff [ファイル名] ( 変更ファイルの変更部分を確認 )
$ git add [ファイル名/フォルダ] ( 変更したファイルを登録 )
$ git commit -m "2回目の変更"
$ git push -u origin master

■すでにあるプロジェクトを取ってくる
$ git clone [URL]

このぐらい覚えておけば、とりあえず差分管理はできると思う。
Powered by shinGETsu.