DEV Community

Ogundele Faruk
Ogundele Faruk

Posted on

Create A Sample Resume And Push to GitHub Pages

STEP BY STEP

πŸ› οΈ 1️⃣ Install Git
πŸ’» Windows: Download from git-scm.com
🐧 Linux:sudo apt install git -y
🍏 Mac:brew install git
Image description
2.πŸ”§ 2️⃣ Set Up Git
Image description
3.🌱 Configure Environment
Image description
4.Enter Into Directory
Image description
Image description
5.Enter #touch index.html# into your terminal to add files or txt
Image description

  1. πŸ“‚Clone Your Github Repo Open your github and create a new repository and copy the command with the URL and paste on your terminal ![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ccrju2jeprs1si4f6x4 Image description 7.Push to GitHub 8.πŸ” 5️⃣ Check Repo Status ##git status Image description 9.To Open The File ##vim index.html Image description 10.You could ask chatgpt to generate a simple index.html file for a personal resume website then you paste it into the terminal 11.To exit the page press esc+shift+:+wq w-save q-quit Image description 12Add files by typing either of these ## git add. or git add index.html then you can check with git status Image description 13.πŸ’Ύ Commit the file using this command ##git commit -m Image description 14.⬆️ Push using git push origin master/main Image description 15.Voila Image description 16.How To Host On Github Pages Navigate to settings then find pages and save it NB branch has to be main or master https://samdudey.github.io/CLASS/ πŸŽ‰ Congratulations, You're Now a Git Ninja! πŸ₯·πŸš€

Top comments (0)