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)