-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add back missing Drupal git history #45
Comments
We started this project on Thursday March 26th, 2015. Nearest releases are as follows:
The most recent commit to the -dev version (I'm going to assume Nate started from the -dev version) before March 26th, was this one:
This changed $usage_week_nids = db_query('SELECT DISTINCT(nid) FROM {project_usage_week_project}')->fetchCol();
$query = db_select('node', 'n') to $usage_week_nids = db_query('SELECT DISTINCT(nid) FROM {project_usage_week_project}')->fetchCol();
if (!empty($usage_week_nids)) { Here's what we have: $usage_week_nids = db_query('SELECT DISTINCT(nid) FROM {project_usage_week_project}')->fetchCol();
if (!empty($usage_week_nids)) { So I'm pretty sure we started from commit |
Well, I tried to do it with a merge and with a rebase, but I cannot figure out how to get a repository that contains the old Drupal git history before Thursday March 26th, 2015, and the new Backdrop git history from after. I think the problem is that there's a significant change between the ending-Drupal commit and the starting-Backdrop commit, and Git needs to know how to make that jump in order to merge the two histories. I don't have time for this today, but would love to get it sorted eventually :) |
The one way I was able to get both histories together is by using |
When checking to see which Drupal 7 version of this module we started with, I realized that the Drupal git history was not maintained.
The first commit to this project is
The text was updated successfully, but these errors were encountered: