Skip to main content

Posts

Showing posts from 2018

Initialisation of a new Vue project

Initialisation of a new Vue project is easiest done with yarn (you can also use npm). First we need to inicialize the project via: yarn init Then we can start adding packages. Vue would be first package: yarn add vue

Useful GIT commands

I will collect here useful GIT commands, that come handy in every day developer's life. Local repository initialisation from remote one: git clone https://repo.git Get new remote repository data: git pull   Get current status of the local repository: git status