daybreaksnow's diary

私を私と呼びたい

2013-09-18から1日間の記事一覧

[git]入門git 3.ログとディフ

重要そうなものには★つけた 直近5時間のコミットログを見る git log --since="5 hours" 出力例 commit b48bea88a002c357143d32952eb7a16238c9b709 Merge: 5edd6fd b8f2c6f Author: Hoge Piyo Date: Wed Sep 18 18:53:40 2013 +0900 コンソールに表示されない…

[git]入門git 2.ブランチとマージ

重要そうなものには★つけた ブランチ ブランチの作成 git branch new_branch ブランチの切り替え git checkout new_branch ブランチ名の変更 git branch -m master mymaster masterを基にブランチを作成して切り替え git checkout -b new_branch master ブラ…