We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5caf77 commit 2116cf9Copy full SHA for 2116cf9
README.md
@@ -203,6 +203,18 @@ And here are the operations that will need to write to your git repository.
203
g.pull(Git::Repo, Git::Branch) # fetch and a merge
204
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')
218
219
g.repack
220
lib/git/base.rb
@@ -417,6 +417,7 @@ def tag(tag_name)
417
# Options:
418
# :a | :annotate -> true
419
# :d -> true
420
+ # :f -> true
421
# :m | :message -> String
422
# :s -> true
423
#
0 commit comments