- Begin by forking this project into a personal repository.
- To do this, click the
Fork
button located at the top right of this page.
- To do this, click the
- Navigate to your github profile to find the newly forked repository.
- Use the
git clone
command to clone the repository from your account into the directory on your computer that you use to keep your projects (ex.dev-projects
directory).
-
cd
into theroot directory
of your new cloned repository -
Use your
command line
to add a simple file structure:- Add a new file called
index.html
using thetouch
command - Add a new folder called
assets
using themkdir
command - Add a new folder
inside of the assets folder
calledcss
-- you'll have tocd
into theassets
folder, and then use themkdir
command - Within the
css folder
, add a file calledstyle.css
- Add a new file called
- From a terminal navigate back to the
root
directory of the cloned project. - From the root directory of the project, execute the following commands:
git add .
- Add all files in current directory to the staging area
git commit -m 'Add file structure'
- Save all staged changes to local repository
git push
- Push changes from local repository to remote repository
- Go back to your Github Profile, navigate to your forked version of the project, refresh the page & you should see the changes you made to the file structure