October 2018
Intermediate to advanced
590 pages
15h 5m
English
Now, let's initialize our application folder as a Git repository, and make a commit by using the following commands:
git init git add -Agit commit -m "create back-end scaffold"git remote add origin https://github.com/taskagile/vuejs.spring-boot.mysql.git
After that, we use the following command to push the repository to GitHub:
git push -u origin master
Now, we have our first commit of the TaskAgile application, as shown in Figure 8.2:
As a practice, we will ...
Read now
Unlock full access