Java Komplette Befehlsübersicht Git

vilbel

Lt. Junior Grade
Registriert
Mai 2014
Beiträge
296
Liebe Gemeinde,
weiß jemand zufällig von euch wo man eine brauchbare und komplette Befehlsübersicht über Git findet?
Auch noch interessant zu wissen wäre, wie viele Befehle insgesamt bietet (außer den Grundbefehlen add, rm, commit, pull)?
 
Code:
> git --help

usage: git [--version] [--help] [-C <path>] [-c name=value]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty Git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and integrate with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

'git help -a' and 'git help -g' lists available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.



> git help -a

usage: git [--version] [--help] [-C <path>] [-c name=value]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]

available git commands in '/usr/libexec/git-core'

  add                       merge-index
  add--interactive          merge-octopus
  am                        merge-one-file
  annotate                  merge-ours
  apply                     merge-recursive
  archimport                merge-resolve
  archive                   merge-subtree
  bisect                    merge-tree
  bisect--helper            mergetool
  blame                     mktag
  branch                    mktree
  bundle                    mv
  cat-file                  name-rev
  check-attr                notes
  check-ignore              p4
  check-mailmap             pack-objects
  check-ref-format          pack-redundant
  checkout                  pack-refs
  checkout-index            patch-id
  cherry                    prune
  cherry-pick               prune-packed
  citool                    pull
  clean                     push
  clone                     quiltimport
  column                    read-tree
  commit                    rebase
  commit-tree               receive-pack
  config                    reflog
  count-objects             relink
  credential                remote
  credential-cache          remote-ext
  credential-cache--daemon  remote-fd
  credential-store          remote-ftp
  daemon                    remote-ftps
  describe                  remote-http
  diff                      remote-https
  diff-files                remote-testsvn
  diff-index                repack
  diff-tree                 replace
  difftool                  request-pull
  difftool--helper          rerere
  fast-export               reset
  fast-import               rev-list
  fetch                     rev-parse
  fetch-pack                revert
  filter-branch             rm
  fmt-merge-msg             send-pack
  for-each-ref              sh-i18n--envsubst
  format-patch              shell
  fsck                      shortlog
  fsck-objects              show
  gc                        show-branch
  get-tar-commit-id         show-index
  grep                      show-ref
  gui                       stage
  gui--askpass              stash
  hash-object               status
  help                      stripspace
  http-backend              submodule
  http-fetch                symbolic-ref
  http-push                 tag
  imap-send                 unpack-file
  index-pack                unpack-objects
  init                      update-index
  init-db                   update-ref
  instaweb                  update-server-info
  log                       upload-archive
  ls-files                  upload-pack
  ls-remote                 var
  ls-tree                   verify-commit
  mailinfo                  verify-pack
  mailsplit                 verify-tag
  merge                     web--browse
  merge-base                whatchanged
  merge-file                write-tree

'git help -a' and 'git help -g' lists available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.



> git help -g

The common Git guides are:

   attributes   Defining attributes per path
   glossary     A Git glossary
   ignore       Specifies intentionally untracked files to ignore
   modules      Defining submodule properties
   revisions    Specifying revisions and ranges for Git
   tutorial     A tutorial introduction to Git (for version 1.5.1 or newer)
   workflows    An overview of recommended workflows with Git

'git help -a' and 'git help -g' lists available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.
 
Zurück
Oben