dailycodebase icon indicating copy to clipboard operation
dailycodebase copied to clipboard

Recurssion Problems

Open AkshitAggarwal opened this issue 6 years ago • 2 comments

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

AkshitAggarwal avatar Mar 16 '19 18:03 AkshitAggarwal

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?

AkshitAggarwal avatar Mar 16 '19 18:03 AkshitAggarwal

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.

aaditkamat avatar Sep 20 '20 15:09 aaditkamat