Die verteilte Versionsverwaltung (DVCS, distributed VCS) verwendet kein zentrales Repository mehr. ! Jeder, der an dem verwalteten Projekt arbeitet, hat sein eigenes Repository und kann dieses mit jedem beliebigen anderen Repository abgleichen.
! Untracked files: (use "git add <file>..." to include in what will be committed) ! staempfli.txt ! nothing added to commit but untracked files present (use "git add" to track) Änderungen am Repository nachverfolgen
for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) ! modified: staempfli.txt ! no changes added to commit (use "git add" and/or "git commit -a") Änderungen am Repository nachverfolgen
aktualisieren There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details ! git pull <remote> <branch> ! If you wish to set tracking information for this branch you can do so with: ! git branch --set-upstream-to=origin/<branch> master
Merge branch 'master' of ssh://your.server.com:7999/hackday/git-basics ! # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.