Ergänzung zu git

Auf Igittigitt! So viel git und noch mehr gits habe ich mir ja schon einige Seiten notiert und hier möchte ich diese Linksammlung erweitern bzw. aufsplitten mit:
Git User’s Manual (for version 1.5.3 or newer)
gittutorial(7) Manual Page
Everyday GIT With 20 Commands Or So
und der Befehlsübersicht auf git(1) Manual Page.
„git – the stupid content tracker“ ist sicher nicht ironisch gemeint.

Was jeder brauchen kann der git benutzt, ist:

  • git-init(1) to create a new repository.
  • git-show-branch(1) to see where you are.
  • git-log(1) to see what happened.
  • git-checkout(1) and git-branch(1) to switch branches.
  • git-add(1) to manage the index file.
  • git-diff(1) and git-status(1) to see what you are in the middle of doing.
  • git-commit(1) to advance the current branch.
  • git-reset(1) and git-checkout(1) (with pathname parameters) to undo changes.
  • git-merge(1) to merge between local branches.
  • git-rebase(1) to maintain topic branches.
  • git-tag(1) to mark known point.
  • git-clone(1) from the upstream to prime your local repository.
  • git-pull(1) and git-fetch(1) from „origin“ to keep up-to-date with the upstream.
  • git-push(1) to shared repository, if you adopt CVS style shared repository workflow.
  • git-format-patch(1) to prepare e-mail submission, if you adopt Linux kernel-style public forum workflow.

Ein weiterer guter Artikel zu push und pull in Deutsch, der auch eine übersichtliche Skizze zu Git Data Transport Commands zeigt.

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert