diff --git a/registerExperiment.py b/registerExperiment.py
index f667035d04578e58789989dc876cec380c60cc71..eaddf2a4f497777b0030344cde3b6a14b8ea6e2f 100644
--- a/registerExperiment.py
+++ b/registerExperiment.py
@@ -245,4 +245,7 @@ def run(folder) -> None :
         scanParameters()
     checkGeneratedFiles()
     writeInYaml()
-    #pushBranch()
+    print("Please check the experimentResume.yaml, if everything is correct, press enter to continue, otherwise type \"abort\"")
+    if input() == "abort":
+        raise Exception("Aborted")
+    pushBranch()