This repository is mainly to learn use through the course MVC. Learning object oriented programming in webtechnologies such as PHP, through a course at BTH.
-
Install git git --version
-
Create a Github account
-
Set up username and email git config --global user.name "Josefine Thorsson" git config --global user.email "jotn23@student.bth.se" git config --list
-
Create a SSH-key ls -la ~/.ssh
-
Add the SSH-key to Github cat ~/.ssh/id_ed25519.pub ssh -T git@github.com
-
Navigate to "me/report"
-
Create a local repository git init ls -la git status
-
Create a README-file touch README.md git status
-
Make the files traceable git add . git status
-
Commit the files git commit -m "Initial release"
-
Create a Github repository Create a new repository on Github.
-
Connect the local repository to your remote repository on Github git remote add origin git@github.com:JosefineThorsson/MVC git branch -M main git push -u origin main
rm -rf .git
