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
- Host: GitHub
- URL: https://github.com/bushmusi/git-challenge
- Owner: bushmusi
- Created: 2022-07-18T08:24:05.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-28T18:46:39.000Z (over 2 years ago)
- Last Synced: 2025-01-09T00:43:41.173Z (5 months ago)
- Topics: git, git-flow
- Language: JavaScript
- Homepage:
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.