Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vyshnavsdeepak/interlincx
Git challenge
https://github.com/vyshnavsdeepak/interlincx
Last synced: 1 day ago
JSON representation
Git challenge
- Host: GitHub
- URL: https://github.com/vyshnavsdeepak/interlincx
- Owner: vyshnavsdeepak
- Created: 2019-11-18T16:11:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T20:59:48.000Z (almost 2 years ago)
- Last Synced: 2024-04-08T09:08:03.250Z (7 months ago)
- Language: JavaScript
- Size: 732 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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.