目指せ!!full stack developer

一生プログラマーのままに生きたい

git

git コマンド2 バージョン管理

git

//to see version No. git log //to see current version No. git reflog //forc to some version git reset --head <バージョン番号> //current status about branch git branch //create new branch git branch <new name> //trunk <==> branches git checkout <branch name> //ad</branch></new>…

git コマンド

git

まず、以下の4つの領域 Remote:サーバー上のrepository Repository:ローカル上のrepository Index(stage):一時保管領域 workspace:ワークスペース 現在gitの設定 git config --list ワークスペースからstageへ git add <file> git add . // 全ディレクトリ stage</file>…

gitの種類と特徴

git

現在主なgitはgithubとbitbucketがある。機能的にはほぼ一緒だが、 以下の特徴 github データ量が多い、privateのrepositoryは有料 ※:良いサンプルプロジェクト探すには最適 bitbucket データ量が少ない、privateのrepositoryは無料 ※:小グループ開発には…