Skip to content

Latest commit

 

History

History
83 lines (53 loc) · 2.65 KB

File metadata and controls

83 lines (53 loc) · 2.65 KB

Welcome to the MATrix Club Repository

This is the main repository for the MATrix Club. If you are here to participate in the member selection test or want to contribute, please follow the steps below to get started with GitHub and clone this repository to your computer.


🛠️ Initial Setup

1. Create a GitHub Account (if you don't have one)

  1. Go to github.com
  2. Click "Sign up"
  3. Choose a username (tip: use your real name or college ID)
  4. Use your college email address
  5. Create a strong password
  6. Verify your email

2. Install Required Software

  • Git: Download from git-scm.com
  • Python 3.x: Download from python.org
  • MATLAB: Use your college lab or personal license
  • Text Editor: VS Code (recommended) or any code editor

3. Configure Git (First Time Only)

Open your terminal/command prompt and run:

git config --global user.name "Your Full Name"
git config --global user.email "your.email@college.edu"

🚀 Getting Started: Fork, Copy URL, and Clone

1. Fork this Repository

Forking creates your own copy of this repository under your GitHub account.

  1. Go to the top-right corner of this page.
  2. Click the "Fork" button.
Screenshot 2025-08-30 093350

2. Copy the Repository URL

After forking, you need to copy the URL of your forked repository.

  1. Click the green "Code" button on your forked repository page.
  2. Copy the HTTPS URL (it looks like https://github.com/YOUR_USERNAME/MATrix.git).
Screenshot 2025-08-30 093638 Screenshot 2025-08-30 093725

3. Clone the Repository to Your Computer

Now, clone your forked repository to your local machine.

  1. Open your terminal or command prompt.
  2. Navigate to the folder where you want to save the repository (e.g., cd Desktop).
  3. Run the following command (replace the URL with your copied one):
git clone https://github.com/YOUR_USERNAME/MATrix.git
image

📝 Next Steps

  • Enter the members_selection_test directory to find the test instructions and questions.
  • Follow the README in that folder for further steps.