This website displays the student portfolio of work for a fictitous Jane Doe. It makes use of the bootstrap 3 framework. The main file index.html is released to the public domain. View at https://profphillips.github.io/portfoliobootstrap/ .
First, use your browser to fork a copy of portfoliobootstrap to your own github account:
-
Use a web browser to log in to your github.com account.
-
Use your browser to visit https://github.com/profphillips/portfoliobootstrap/ .
-
Click on the Fork icon to copy this project to your github account and view it there.
Follow these steps to use your repository (assumes a Linux / Apache2 server with public_html web folders and git):
-
Log in to your Linux server account
-
To see your globals type:
git config --list
-
If missing email or name then give the next two commands:
a. git config --global user.email "[email protected]"
b. git config --global user.name "First Last"
- Change into your public_html folder and type:
a. git clone https://github.com/youraccountname/portfoliobootstrap.git
b. cd portfoliobootstrap
- Make some changes to index.html and save
a. git status
b. git add .
c. git status
d. git commit -am "your comment here"
e. git status
f. git push -u origin master
- Make more changes. If no new files are added you can just type:
a. git commit -am "new comment"
b. git push
-
Use your web browser to verify that your updated files are in your GitHub repository.
-
Use your web browser to visit https://youraccountname.github.io/portfoliobootstrap/ to see what your website looks like; for example, my example page is at https://profphillips.github.io/portfoliobootstrap/ .