Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 501 Bytes

44.md

File metadata and controls

18 lines (12 loc) · 501 Bytes

Problema

44 - Qual o comando para adicionares uma tag anotada com etiqueta v12 e mensagem Lots of optimizations and bug fixes a um commit com código de verificação começado por baae61804? Qual o comando para fazeres push única e exclusivamente desta tag para o repositório remoto github-repo?

Soluções

Solução 1

git tag -a v12 -m "Lots of optimizations and bug fixes" baae61804
git push github-repo v12

Por Sara Gama.