dailycodebase
dailycodebase copied to clipboard
Recurssion Problems
Please make sure you have done the following:
- [x] Created a folder with the name of language you code inside
/Day<n>/directory (Where n is for nth day) - [x] Added your Codes
- [x] Tested your codes
- [x] Added credits (author and date) at the top of the code
- [x] Updated README.md
- [x] Added yourself as a contributor using
all-conributors-cli
Why is it that even after my previous commits being already merged into the Parent Repo they are all still being shown in this Pull request?
Yes, this has happened to me as well. You should not be sending a pull request from the master branch of your fork. The master branch of the fork needs to be in sync with this master branch. The way I resolved this is to checkout an orphan branch from your fork's master using git checkout --orphan <BRANCH_NAME> and remove all the files before pulling them from the upstream master. Then add the solutions that are there in your fork's master to this orphan branch. Hope this explanation is not too confusing.