Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 1.75 KB

README.md

File metadata and controls

67 lines (43 loc) · 1.75 KB

BCT_AB_Assignment

This repository is dedicated to the BCT AB assignment submissions. Below you'll find instructions on how to fork this repository, make changes, and push your contributions. MAKE SURE THAT YOUR FOLDER HAS YOUR OWN COLLEGE NAME IN IT (NOTE: YOUR CODE MUST CONTAIN IN A FOLDER OF YOUR OWN NAME OR Roll no OR BOTH ELSE WON'T BE ACCEPTED)

Table of Contents

Forking the Repository

  1. Visit the BCT_AB_Assignment repository.
  2. Click on the Fork button in the upper-right corner of the page.
  3. This will create a copy of the repository under your GitHub account.

Cloning the Repository

Once you have forked the repository, you can clone it to your local machine:

git clone https://github.com/your-username/BCT_AB_Assignment.git

Replace your-username with your GitHub username.

Making Changes

  1. Navigate to the cloned repository on your local machine:
cd BCT_AB_Assignment
  1. Make changes:

Pushing Changes

  1. After making your changes, add them to the staging area:
git add .
  1. Commit your changes with a meaningful message:
git commit -m "Your commit message"
  1. Push your changes to your forked repository:
git push

Creating a Pull Request

  1. Visit your forked repository on GitHub.
  2. Click on the Compare & pull request button.
  3. Review your changes and submit the pull request.

If you follow these steps, you'll be able to fork and push changes to the BCT_AB_Assignment repository.