-
Notifications
You must be signed in to change notification settings - Fork 79
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
Alternative to --no-history #126
Comments
This
|
Sounds good, feel free to open a pull request for this. Thanks! |
Let's go ! We continue discussion here or on the PR ? |
Hi, the PR should be in an reviewable state now, still some open subjects about stdout messages, should we add warning about potential missing tools on Windows (grep), ... I also see that the pipeline become obsolete due to Python 2.7 checks, is it something you want to change ? Updating the min Python supported version to a 3.X. |
I use
ghp-import
with a variable prefix, to keep a disctinct doc folder by release and one for all nightly updates, like:As you expect, without
--no-history
this repo growth out of control, but I need to keep data for each releases. I end up with agit-filter
to squash commits from nightly builds, like:This command merge all commits with a common commit message the result is:
I wonder if this kind of commit squash command could be added to
ghp-import
as an alternative to--no-history
. In the simplest form we can squash all commits of the branch without bother about commit message, or we can try to keep some ways to choose which commits should be squashed.Could be:
Note:
-a
to keep-q
for potential--quiet
parameter.The text was updated successfully, but these errors were encountered: