+wiki:Administracion de proyecto

jp.dev 2020-11-27 01:20:37 -03:00
parent 2ad6586b62
commit 2addab4d25

@ -0,0 +1,54 @@
**Ir a:**
*[Repositorio](https://gitea.kickto.net/jp.av.dev/basicos_git#user-content-wiki)*,
*[Flujos de trabajo](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Workflows-y-acciones-colaborativas#user-content-workflows)*,
*[]()*
## Administracion de proyectos
### Tags
-----
**Lightweight Tag**
Es un simple puntero a un commit, no guarda mas info.
- ` git tag v0.2 `
**Annotated Tags**
Etiqueta que apunta a un commit, y sus archivos en ese momento.
Contiene informacion adicional y mas completa, uso recomendado.
```
# Crear Annotated Tag
git tag -a 26-11-20v0.1 -m "Version 0.1"
# Publicar tags
git push --tags
git push origin --tags
# Listar Tags
git tag
# Ver Tag
git show 26-11-20v0.1
# Tag a commit anterior (cheksum del commit, o parte de este)
git tag -a 19-10-20v0.0.5 0a478hsfb
# Borrar Tag Locales
git tag -d 19-10-20v0.0.5
# Borrar Tag Remoto
git push :refs/tags/19-10-20v0.0.5
git push origin :refs/tags/19-10-20v0.0.5
# Checkout Tags (deatached HEAD state)
git checkout 19-10-20v0.05
```
[*doc*](https://git-scm.com/book/en/v2/Git-Basics-Tagging)
-----
**Ir a:**
*[Repositorio](https://gitea.kickto.net/jp.av.dev/basicos_git#user-content-wiki)*,
*[Flujos de trabajo](https://gitea.kickto.net/jp.av.dev/basicos_git/wiki/Workflows-y-acciones-colaborativas#user-content-workflows)*,
*[]()*