🪬

【Git入門】Gitコマンド一覧

に公開

https://git-scm.com/docs

ただ単に git コマンドを羅列しているだけです。

よく使う一般的なコマンド

  • git add
  • git commit
  • git push
  • git pull
  • git fetch
  • git merge
  • git status
  • git log
  • git show
  • git diff
  • git branch
  • git checkout
  • git reset

たまに使うコマンド

  • git rebase
  • git cherry-pick
  • git stash
  • git revert
  • git clone
  • git remote
  • git config

あんまり使わないコマンド

  • git init
  • git mv
  • git rm
  • git help
  • git clean
  • git reflog

使ったことがないコマンド

  • git mergetool
  • git tag
  • git worktree
  • git submodule
  • git shortlog
  • git describe
  • git grep
  • git blame
  • git bisect
  • git format-patch
  • git am
  • git apply
  • git send-email
  • git request-pull
  • git gc
  • git fsck
  • git filter-branch
  • git archive
  • git bundle
  • git cat-file
  • git check-ignore
  • git checkout-index
  • git count-objects
  • git diff-index
  • git for-each-ref
  • git ls-files
  • git ls-tree
  • git merge-base
  • git read-tree
  • git rev-parse
  • git symbolic-ref
  • git update-index
  • git update-ref

まとめ

使っていないコマンドがかなり多いのでまだまだな様です。

今回はコマンドの一覧を書いただけですが、今後は各コマンドごとの記事も更新できたらします。

Discussion