Skip to content

Commit

Permalink
Added question about removing Git tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
xvitaly committed Feb 29, 2020
1 parent e8d3740 commit a50e7fd
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,7 @@ Qt-приложение, собранное Clang с LTO не запускает
git push --delete origin v1.0.0
.. index:: git, remove, remote, branch
.. _git-remove-tag:
.. _git-remove-branch:

Как удалить ветку во внешнем Git репозитории?
=================================================
Expand All @@ -1354,3 +1354,21 @@ Qt-приложение, собранное Clang с LTO не запускает
.. code-block:: text
git push --delete origin foo-bar
.. index:: git, remove, tag, remote
.. _git-remove-all-tags:

Как удалить все теги (локальные и удалённые) в Git репозитории?
===================================================================

Удалим все теги из внешнего Git репозитория:

.. code-block:: text
git push origin --delete $(git tag -l)
Удалим все оставшиеся локальные теги:

.. code-block:: text
git tag -d $(git tag -l)

0 comments on commit a50e7fd

Please sign in to comment.