-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync with upstream and enhance translations and source code
- Loading branch information
Showing
36 changed files
with
204 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,7 @@ v1.4 | |
|
||
Z uporabo ukaza `git show` lahko pogledate podatke oznake skupaj s potrditvijo, ki je bila označena: | ||
|
||
[source,console] | ||
[source,console?prompt=$] | ||
---- | ||
$ git show v1.4 | ||
tag v1.4 | ||
|
@@ -117,7 +117,7 @@ v1.5 | |
Tokrat, če poženete `git show` na oznaki, ne boste videli dodatnih informacij oznake.(((git commands, show))) | ||
Ukaz samo prikazuje potrditev: | ||
|
||
[source,console] | ||
[source,console?prompt=$] | ||
---- | ||
$ git show v1.4-lw | ||
commit ca82a6dff817ec66f44342007202690a93763949 | ||
|
@@ -158,7 +158,7 @@ $ git tag -a v1.2 9fceb02 | |
|
||
Vidite lahko, da ste označili potrditev:(((git commands, tag))) | ||
|
||
[source,console] | ||
[source,console?prompt=$] | ||
---- | ||
$ git tag | ||
v0.1 | ||
|
@@ -189,7 +189,7 @@ Privzeto, ukaz `git push` ne prenese oznak na oddaljene strežnike.(((git comman | |
Morali boste eksplicitno poslati oznake na deljeni strežnik za tem, ko ste jih naredili. | ||
Ta proces je enak deljenju oddaljenih vej - lahko poženete `git push origin <tagname>`. | ||
|
||
[source,console] | ||
[source,console?prompt=$] | ||
---- | ||
$ git push origin v1.5 | ||
Counting objects: 14, done. | ||
|
@@ -204,7 +204,7 @@ To [email protected]:schacon/simplegit.git | |
Če imate veliko oznak, ki jih želite poslati naenkrat, lahko uporabite tudi možnost `--tags` pri ukazu `git push`. | ||
To bo na oddaljeni strežnik preneslo vse vaše oznake, ki še niso tam. | ||
|
||
[source,console] | ||
[source,console?prompt=$] | ||
---- | ||
$ git push origin --tags | ||
Counting objects: 1, done. | ||
|
@@ -256,11 +256,11 @@ Drugi (in bolj intuitiven) način za brisanje oddaljene oznake je: | |
$ git push origin --delete <tagname> | ||
---- | ||
|
||
==== Izpisovanje oznak | ||
==== Izvlečenje oznak | ||
|
||
Če želite pogledati različice datotek, na katere oznaka kaže, lahko naredite `git checkout` določene oznake, vendar vam to vaš repozitorij da v stanje "`detached HEAD`", kar ima določene stranske učinke: | ||
|
||
[source,console] | ||
[source,console?prompt=$] | ||
---- | ||
$ git checkout v2.0.0 | ||
Note: switching to 'v2.0.0'. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.