目次

リモートへのブランチの push / ローカルへのブランチ checkout

リモートへのブランチの push

% git push origin <branch_name>

ローカルへのブランチ checkout

% git fetch
% git checkout -b <branch_name> origin/<branch_name>


% git push --delete origin <branch_name>