Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ravipatel147/test-challenge-react-rebase
https://github.com/ravipatel147/test-challenge-react-rebase
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ravipatel147/test-challenge-react-rebase
- Owner: ravipatel147
- Created: 2021-07-30T11:02:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-30T11:05:34.000Z (over 3 years ago)
- Last Synced: 2024-02-18T06:26:19.815Z (9 months ago)
- Language: JavaScript
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Engineering React Rebase Challenge
You will be expected to be able to contribute features and fixes without causing conflicts and other version control headaches. An important tool for keeping codebases clean is `git rebase`. This challenge will test your understanding of a basic codebase and your ability to use `git rebase` properly.
## The Challenge
There are two pull requests open on this repo. Each change is in its own branch. The challenge is to use `git rebase` to add both changes to `main`. When you are finished, your `main` branch should have three commits in the following order:
```
* feat: add Biology Today article
* feat: add Auto Review article
* fiat lux
```_Any errors, missing features, missing tests, or failing tests will disqualify the solution._
## Instructions
How to attempt this challenge:
1) Clone this repo locally
2) Solve the challenge locally
3) Create a new repo in your GitHub account and note the git url
4) Set your local origin to the new git url: `git remote set-url origin ${git url}`
5) Push your solution to the newly set originYou must follow these steps for your solution to be accepted -- **forks or other methods will not be considered.**