Skip to content

Files

Latest commit

2c9a38b · Apr 20, 2024

History

History

Day 24

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 20, 2024

Day 24

Today we will learn to clone a repository and make a PR.

Problem Statement:

Your friend has a problem! Clone the repo, create a branch called "solution", and fix the problem in this branch. When you're ready. make a "Pull Request" by using git tag pr.

Question:

  • Complete the goal of this level

Repository:

  • friend
    • file

Description of the problem.

Solution:

  1. Clone the repository.
git clone ../friend .
  1. Create a new branch named solution.
git branch -M solution
  1. Edit the file and make a commit.
git add .
git commit -m "issue fixed"
  1. Create a PR into the repository.
git tag pr

Description of the solution.