commands.md

July 15, 2021 · View on GitHub

Bookmarks tagged [commands]

www.codever.land/bookmarks/t/commands

generate · angular/angular-cli Wiki · GitHub

https://github.com/angular/angular-cli/wiki/generate

ng generate [name] generates the specified blueprint. Check out there the available blueprints (class, component, module etc.)


Git - Remote Branches

https://git-scm.com/book/en/v2/Git-Branching-Remote-Branches

Checkout Remote Branches ...


Git - Tagging

https://git-scm.com/book/en/v2/Git-Basics-Tagging

Local Repo

  • git tag - lists the available tags in Git
  • git tag -l "v.1.8.5" - search for tags with a particular system v1.8.5, v1.8.5-rc0, v1.8.5.1 etc
  • `git tag -a v1.4 -m "my version 1...
  • tags: git, commands