When I was rebasing, I got merge conflict. Then I do the manual fix and then git add; git rebase --continue,
but new conflict keep coming up, prompt hint: Use 'git am --show-current-patch' to see the failed patch
so I show-current-patch to see
index 1hash..8hash 100644
--- a/path/file
+++ b/path/file
@@ -1,5 +1,6 @@
+import lib
@@ -11,7 +12,7 @@ project_id = something
with models.DAG(
- start_date=datetime.datetime(2022, 1, 31),
+ start_date=airflow.utils.dates.days_ago(0),
But if I edit the file in conflict, it is like
<<<<<<< HEAD
start_date=airflow.utils.dates.days_ago(1)
=======
start_date=airflow.utils.dates.days_ago(0)
>>>>>>> other guy's commit
seems the head content is different from git am --show-current-patch?
I just couldn't figure out where is the value "1" in airflow.utils.dates.days_ago(1) coming from?
Any ideas? Thanks a lot.