Different ways of pushing commits from template repo #319
Replies: 3 comments 2 replies
-
The responsible line is within src/sync_template.sh line 72. an idea would be to make thw whole pull arguments configurable. --allow-unrelated-histories --squash --strategy=recursive -X theirs That way the user would have whole freedom to choose whatever strategy she/he need to use. Remark: |
Beta Was this translation helpful? Give feedback.
-
@george-gca would be a parameter to configure the pull behaviour sufficient? Then you have the full freedom to set for your use case. |
Beta Was this translation helpful? Give feedback.
-
Parting from #316, I believe it would be useful to make squashing commits an option, and maybe also add new options, like
rebase
.Currently my repositories look like this:
Since all the changes that I introduced have to be applied in the latest version of the previous repo, it makes sense for me to keep rebasing it (also to keep the history as linear as possible). For this reason, I believe a
rebase
option would be nice.Beta Was this translation helpful? Give feedback.
All reactions