An open API service indexing awesome lists of open source software.

https://github.com/bushmusi/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
https://github.com/bushmusi/git-challenge

git git-flow

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# Git Challenge for git flow
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.