Skip to content

Latest commit

 

History

History
78 lines (50 loc) · 1.88 KB

File metadata and controls

78 lines (50 loc) · 1.88 KB

MLSC GHRCEM 🚀

This is a repository for you to practice and make pull requests by adding your images to our website.

Logo

Instructions:

  • Fork the project: Click the gray Fork button in the top right of this page. This creates your copy of the project and saves it as a new repository in your GitHub account

Logo

  • Click on the green Code button, then either the HTTPS or SSH option and, click the icon to copy the URL. Now you have a copy of the project. Thus, you can play around with it locally on your computer.

Logo

  • Run the following commands into a terminal window (Command Prompt, Powershell, Terminal, Bash, ZSH). Do this to download the forked copy of this repository to your computer.
  git clone copied_link
  • Switch to the cloned folder. You can paste this command into the same terminal window.
  cd ContributorGallery
  • Open the colned files in vs-code
  code .

Contribution Phase -

  • Make a new branch. Your username would make a good branch because it's unique.
  git checkout -b <name-of-new-branch>
  • Stage your changes.
  git add . 
  • Commit the changes.
  git commit -m "Added my image"
  • Pushing your repository to GitHub.
  git push -u origin <name-of-your-branch>

Additional Resources

  • Command to install git using cli
winget install --id Git.Git -e --source winget
  • Command to run if it's your first GitHub push
git config –global user.name “Your Name”
git config –global user.email “Your Email”