# challenge-git **Repository Path**: mirrors_taoqf/challenge-git ## Basic Information - **Project Name**: challenge-git - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-26 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git Challenge There are two branches, `add-echo` and `add-reverse`. The goal of this challenge is to use `git rebase` to bring both commits onto master. When finished there should be no merge commits or branching. For example, `git log` on the `master` branch should look similar to this: ``` /challenge-git master ⚡ git log 61a2c67 feat: add reverse route (David Guttman, 7 minutes ago) 2c2c5d6 feat: add echo route (David Guttman, 10 minutes ago) dcc4c0b docs: add more instructions (David Guttman, 11 minutes ago) ... ``` ## Instructions How to attempt this challenge: 1) Create a new repo in your account and note the git url 2) Clone this repo 3) Solve the challenge 4) Set your new repo as the origin: `git remote set-url origin ${your repo url}` 5) Push your solution to your repo You must follow these steps for your solution to be accepted -- forks or other methods will not be considered.