KB Blog
Navigation

Angular

Services

AWS

CLI Elastic Beanstalk EC2 RDS VPC

CircleCI

AWS Configuration Workflow and deployment

CSS / SASS

Bootstrap Flexbox Fonts Margin and Padding Tables Variable in SASS

Docker

Getting started

Git

Git branches Content versioning Credentials Git remotes Git tags

Go

Installation

Heroku

CLI

JavaScript

Async / await Service Workers Webpack Workbox

Jekyll

Filter Markdown

Markdown

Images

MySQL

Getting started

PostgreSQL

Installation

PowerShell

Profiles Profiles

Rails

Serialization Active Storage Routing

ReactJS

React + CI Documentation Props Redux Saga

Surge.sh

Getting Started

Travis CI

Deployment Encrypting variables Notifications

Ubuntu

Language Python & Django

Visual Studio Code

Extensions

Vue.js

Pwa Routing Vuepress Vuex

Git tags

Reference: git tagging documentation

List tags

# List all tags
git tag
# Regex T_T
git tag -l "v1.8.5*"
# Show a specific tag
git show v1.4.5

Annotated vs Lightweight tags

# Annotated
git tag -a v1.4 -m "release 1.4"
# Lightweight
git tag v1.4-lw

Tag & remote

# Push tags
git push origin v1.4