the step backwards for our two forward
[feisty_meow.git] / scripts / rev_control / push_repo_downstream.sh
index b2da88704a60f4ace4290f638e8be69cc1eb6030..d65c2f45bfab643ba13f86bd489eb58cbfb7a8b3 100644 (file)
@@ -49,11 +49,16 @@ tempfile=$(generate_rev_ctrl_filelist)
 test_or_die "generating revision control file list"
 
 perform_revctrl_action_on_file "$tempfile" do_careful_git_update
-test_or_die "doing a careful git update on: $tempfile"
+test_or_die "doing a careful update on: $tempfile"
+
+# seems to be needed to cause a merge to be resolved.
+git pull downstream master
+# -m "unfortunate merge"
+test_or_die "running the git pull downstream master"
 
 # send our little boat down the stream to the dependent repository.
-git push downstream master
-test_or_die "running the git push downstream"
+git push --tags downstream master
+test_or_die "running the git push downstream master"
 
 popd &>/dev/null