File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,18 @@ And here are the operations that will need to write to your git repository.
203
203
g.pull(Git ::Repo , Git ::Branch ) # fetch and a merge
204
204
205
205
g.add_tag(' tag_name' ) # returns Git::Tag
206
+ g.add_tag(' tag_name' , ' object_reference' )
207
+ g.add_tag(' tag_name' , ' object_reference' , {:options => ' here' })
208
+ g.add_tag(' tag_name' , {:options => ' here' })
209
+
210
+ Options:
211
+ :a | :annotate
212
+ :d
213
+ :f
214
+ :m | :message
215
+ :s
216
+
217
+ g.delete_tag(' tag_name' )
206
218
207
219
g.repack
208
220
Original file line number Diff line number Diff line change @@ -417,6 +417,7 @@ def tag(tag_name)
417
417
# Options:
418
418
# :a | :annotate -> true
419
419
# :d -> true
420
+ # :f -> true
420
421
# :m | :message -> String
421
422
# :s -> true
422
423
#
You can’t perform that action at this time.
0 commit comments