removing very old commits (including initial)

3 messages, 3 authors, 2016-06-15 · open the first message on its own page

removing very old commits (including initial)

From: Mihamina Rakotomandimby <hidden>
Date: 2016-06-15 22:49:12

Manao ahoana, Hello, Bonjour,

I work on a personnal project that become a little bit bigger over the
time.
Initially, it was a single file one, and that file contained database
credentials.
Later, I splat the project and put the credentials in another untracked
file (.gitignore).
When I want to publish this project, the history contains the initial
file, with the credentials. I dont want to publish that.

It's not a problem to definitely wipe the "single file" part of history
of this project, but interesting to keep the history after the
split&untracking.

How to?
Publishing will be through gitweb.

Misaotra, Thanks, Merci.

-- 

       Architecte Informatique chez Blueline/Gulfsat:
    Administration Systeme, Recherche & Developpement
                                    +261 34 56 000 19

Re: removing very old commits (including initial)

From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2016-06-15 22:49:12

On Wed, Jul 28, 2010 at 08:53, Mihamina Rakotomandimby
[off-list ref] wrote:
It's not a problem to definitely wipe the "single file" part of history
of this project, but interesting to keep the history after the
split&untracking.
git-filter-branch(1) will do everything you need.

Re: removing very old commits (including initial)

From: Santi Béjar <hidden>
Date: 2016-06-15 22:49:12

On Wed, Jul 28, 2010 at 10:53 AM, Mihamina Rakotomandimby
[off-list ref] wrote:
Manao ahoana, Hello, Bonjour,

I work on a personnal project that become a little bit bigger over the
time.
Initially, it was a single file one, and that file contained database
credentials.
Later, I splat the project and put the credentials in another untracked
file (.gitignore).
When I want to publish this project, the history contains the initial
file, with the credentials. I dont want to publish that.

It's not a problem to definitely wipe the "single file" part of history
of this project, but interesting to keep the history after the
split&untracking.
If I understand you correctly you want to publish only the commits
since a particular commit, say "newroot". You can do it with "git
filter-branch". You have many different filters, but in you case I
would you grafts to cut the history and the rewrite the history with
git filter-branch.

In .git/info/grafts you put something like this:
HashOfTheNewRoot

It means that this commit has no parent, so you are cutting the
history. You can examine the history with git log or gitk to check
everything looks fine. To make it definitive you have to execute git
filter-branch:

$ git filter-branch -- --all

--all in this case means all the refs.

HTH,
Santi
How to?
Publishing will be through gitweb.

Misaotra, Thanks, Merci.

--

      Architecte Informatique chez Blueline/Gulfsat:
   Administration Systeme, Recherche & Developpement
                                   +261 34 56 000 19
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help