リポジトリをダウンロード(git clone
)し,一時的に自分なりのカスタマイズをしたり,開発用のテスト版を作りたいときには,派生バージョン(branch)を作って管理できる。
git clone
でリポジトリのダウンロード$ git checkout -b test
リポジトリ内で,複数のbranchの編集が可能。
$ git branch
サーバ上のブランチもすべて見たいときには-a
をつける$ git checkout test
$ git branch
作ったtestブランチを,サーバ上にも反映する。
$ git push -u origin test
-u
は新規ブランチを始めてサーバにアップロードする時につける。2回目以降は省略可
$ git reset --hard # resets git staging and your tracked files to the last commit
$ git clean -fd # deletes untracked files (this is optional)
$ git checkout master
$ git branch -D <branch to remove>