Skip to content

git command

t_akira edited this page May 10, 2023 · 8 revisions

よく使うgit command memo

branch

  • 右下 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

stash


Ref

Clone this wiki locally