🤥

チーム開発_git コマンド編

2023/10/13に公開

主に使うであろうGitコマンド

  • git branch
  • git checkout -b ~~~~(作業ブランチ名)
  • git checkout ~~~~(作業ブランチ名)
  • git status
  • git add -A
  • git commit -m "コメント"
  • git push origin ~~~~(作業ブランチ)
  • git pull origin ~~~~(pullしたいブランチ名)
  • git merge origin/~~~~(mergeしたいブランチ名)
  • git diff
  • git log --graph

参照記事一覧

https://codelikes.com/git-pull/

https://zenn.dev/gibjapan/articles/bbdaf8173f21c9

https://www.atlassian.com/ja/git/glossary

Discussion