Skip to content

Commit

Permalink
Sync commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
petk committed May 9, 2023
1 parent acc997c commit b2a028a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions book/03-git-branching/sections/nutshell.asc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 <<divergent_history>>).
Expand All @@ -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.
Expand Down

0 comments on commit b2a028a

Please sign in to comment.