2013-01-05から1日間の記事一覧

remote branch一覧取得

git

to get all branches git branch -ato get remote branches git branch -r http://gitready.com/intermediate/2009/02/13/list-remote-branches.html

remoteへのpush

git

リモートへのプッシュあなたのプロジェクトがみんなと共有できる状態に達したら、それを上流にプッシュしなければなりません。そのためのコマンドが git push [remote-name] [branch-name] です。master ブランチの内容を origin サーバー (何度も言いますが…

check current branch

git

"git branch" should show all the local branches of your repo. The starred branch is your current branch.http://stackoverflow.com/questions/6245570/get-current-branch-nameGit-のブランチ機能-ブランチの管理