Skip to content

Commit 043502c

Browse files
authored
Now in line with 2.1.87 of progit2-en (#18)
1 parent 443757a commit 043502c

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

book/02-git-basics/sections/recording-changes.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Hier is nog een voorbeeld van een `.gitignore` bestand:
246246
# only ignore the TODO file in the current directory, not subdir/TODO
247247
/TODO
248248
249-
# ignore all files in the build/ directory
249+
# ignore all files in any directory named build
250250
build/
251251
252252
# ignore doc/notes.txt, but not doc/server/arch.txt

book/02-git-basics/sections/tagging.asc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,27 @@ To [email protected]:schacon/simplegit.git
219219

220220
Als nu iemand anders van jouw repository kloont of pullt, dan zullen zij al jouw tags ook krijgen.
221221

222+
==== Tags verwijderen
223+
224+
Om een tag uit je lokale repository te verwijderen, kan je `git tag -d <tagnaam>` gebruiken.
225+
Als voorbeeld, we kunnen onze lichtgewicht tag hierboven als volgt verwijderen:
226+
227+
[source,console]
228+
----
229+
$ git tag -d v1.4-lw
230+
Deleted tag 'v1.4-lw' (was e7d5add)
231+
----
232+
233+
Merk op dat dit niet de tag van enig remote server verwijdert.
234+
Om ook de remotes bij te werken, moet je `git push <remote> :refs/tags/<tagnaam>` gebruiken:
235+
236+
[source,console]
237+
----
238+
$ git push origin :refs/tags/v1.4-lw
239+
To /[email protected]:schacon/simplegit.git
240+
- [deleted] v1.4-lw
241+
----
242+
222243
==== Tags uitchecken
223244

224245
Als je de lijst van bestandsversies wilt zien waar een tag naar verwijst, kan je een git checkout doen, maar dit zet je repository wel in een ``detached HEAD'' status, wat een aantal nadelige bijeffecten heeft:

book/10-git-internals/sections/packfiles.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Wijzig nu dat bestand een beetje, en kijk wat er gebeurt:
6161
[source,console]
6262
----
6363
$ echo '# testing' >> repo.rb
64-
$ git commit -am 'modified repo a bit'
64+
$ git commit -am 'modified repo.rb a bit'
6565
[master 2431da6] modified repo.rb a bit
6666
1 file changed, 1 insertion(+)
6767
----

diagram-source/progit.sketch

-8.93 MB
Binary file not shown.

images/reset-squash-r3.png

45.2 KB
Loading

0 commit comments

Comments
 (0)