Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 1.24 KB

commands.md

File metadata and controls

26 lines (22 loc) · 1.24 KB

Bookmarks tagged [commands]

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.)


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

Checkout Remote Branches ...


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