The print-apps folder was moved to the project.
/var/lib/tomcat7/webapps/print/print-apps
is now a link to the project's print-apps
folder.
sudo ln -s /home/jgr/WebstormProjects/MyDashBoard/print-apps /var/lib/tomcat7/webapps/print/print-apps
Cf git-how-to-get-a-snapshot-of-a-git-repository
rm -rf .git
git init
git config user.name "Jorge Gustavo Rocha"
git config user.email "[email protected]"
-- git remote add origin [email protected]:jgrocha/MyDashBoard.git
git remote add origin https://gitlab.com/jgrocha/MyDashBoard.git
-- vi .gitignore
git add .
git commit -m "Initial commit on gitlab"
git push -u origin master