-
Notifications
You must be signed in to change notification settings - Fork 0
git command
t_akira edited this page May 10, 2023
·
8 revisions
-
右下 Development -> Create a branch で Issue に紐づいた branch ができる remote の branch を local に反映
git fetch git checkout 3-github-test
-
ローカルでブランチ作成、リモートに反映
# new_branch作成元のbranchに移動(大体main?) git checkout <branch_name> # branchを作成 git checkout -b <new_branch_name> # リモートに登録 git branch -u origin <new_branch_name>
-
remoteとの差分をlocalに反映
git fetch --prune