diff --git a/book/03-git-branching/sections/nutshell.asc b/book/03-git-branching/sections/nutshell.asc index 97e44e8a..34bce96f 100644 --- a/book/03-git-branching/sections/nutshell.asc +++ b/book/03-git-branching/sections/nutshell.asc @@ -110,7 +110,7 @@ Torej naredimo drugo potrditev: [source,console] ---- $ vim test.rb -$ git commit -a -m 'made a change' +$ git commit -a -m 'Make a change' ---- .Veja HEAD se premakne naprej, ko je narejena potrditev @@ -157,7 +157,7 @@ Naredimo nekaj sprememb in ponovno potrdimo: [source,console] ---- $ vim test.rb -$ git commit -a -m 'made other changes' +$ git commit -a -m 'Make other changes' ---- Sedaj se je zgodovina vašega projekta spremenila (glejte sliko <>). @@ -175,12 +175,12 @@ To lahko enostavno pogledate tudi z ukazom `git log`. [source,console?prompt=$] ---- $ git log --oneline --decorate --graph --all -* c2b9e (HEAD, master) Made other changes -| * 87ab2 (testing) Made a change +* c2b9e (HEAD, master) Make other changes +| * 87ab2 (testing) Make a change |/ * f30ab Add feature #32 - ability to add new formats to the central interface * 34ac2 Fix bug #1328 - stack overflow under certain conditions -* 98ca9 initial commit of my project +* 98ca9 Initial commit of my project ---- Ker je veja v Gitu dejansko enostavna datoteka, ki vsebuje 40 znakovno kontrolno vsoto SHA-1 potrditve, kamor kaže, so veje ugodne za izdelavo in uničenje.