Tagged Questions
The git-filter-branch tag has no wiki summary.
265
votes
9answers
27k views
Detach subdirectory into separate Git repository
I have a Git repository which contains a number of subdirectories. Now I have found that one of the subdirectories is unrelated to the other and should be detached to a separate repository.
How can I ...
154
votes
12answers
43k views
How do I change the author of a commit in git?
I was writing a simple script in the school computer, and commiting the changes to git (in a repo that was in my pendrive, cloned from my computer at home). After several commits I realized I was ...
12
votes
3answers
2k views
Detach many subdirectories into a new, separate Git repository
This question is based on http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository
Instead of detaching a single subdirectory, I want to detach a couple. For ...
11
votes
4answers
443 views
git: How to split off library from project? filter-branch, subtree?
So, I've a bigger (closed source) project, and in the context of this project created a library which could also be useful elsewhere, I think.
I now want to split off the library in its own project, ...
9
votes
3answers
1k views
Split large Git repository into many smaller ones
After successfully converting an SVN repository to Git, I now have a very large Git repository that I want to break down into multiple smaller repositories and maintain history.
So, can someone help ...
9
votes
5answers
3k views
Change first commit of project with git?
I want to change something in the first commit of my project with out losing all subsequent commits. Is there any way to do this?
(I accidentally listed my raw email, and I'd like to change it as I'm ...
8
votes
2answers
1k views
How to split a git repository while preserving subdirectories?
What I want is similar to this question. However, I want the directory that is split into a separate repo to remain a subdirectory in that repo:
I have this:
foo/
.git/
bar/
baz/
qux/
And ...
7
votes
2answers
2k views
git-filter-branch to delete large file
I have a git repo with some very large binaries in it. I no longer need them, and I don't care about being able to checkout the files from earlier commits. So, to reduce the repo size, I want to ...
6
votes
5answers
510 views
How to delete the old history after running git filter-branch?
Suppose I have such tree:
... -- a -- b -- c -- d -- ...
\
e -- a -- k
and I want it become just
... -- a -- b -- c -- d -- ...
I know how to attach branch name to ...
6
votes
1answer
700 views
Repeatedly using git-filter-branch to rewrite new commits
I would like to split out modules distributed with a bigger application into separate submodules and keep the ability to pull from upstream.
So this is more complex than Detach subdirectory into ...
5
votes
3answers
809 views
How do I remove the old history from a git repository?
I'm afraid I couldn't find anything quite like this particular scenario.
I have a git repository with a lot of history: 500+ branches, 500+ tags, going back to mid-2007. It contains ~19,500 commits. ...
4
votes
1answer
263 views
Splitting huge git repo
I am trying to split a git repo using the recipe described in this question, but the git repo in question is huge and has thousands of commits, so command line limit kicks in when I try to run the ...
4
votes
3answers
392 views
git - could I change my name and surname in all previous commits?
I would like to change my name, surname and email in my all commits, is it possible? Thanks.
4
votes
3answers
234 views
How to substitute text from files in git history?
I've always used an interface based git client (smartGit) and thus don't have much experience with the git console.
However, I now face the need to substitute a string in all .txt files from history ...
4
votes
2answers
247 views
How can I rewrite history so that all files are in a subdirectory?
I have a project under git. One day I moved all project files from current directory to foo/bar/ under the project. I did it using git mv. Then I added some more files and did some changes to already ...
3
votes
1answer
74 views
Why did --cached option on filter-branch remove files from working directory?
I needed to remove some Xcode files from an old repo that should have been ignored. So I ran the following command
git filter-branch --index-filter 'git rm -f --cached --ignore-unmatch *mode1v3 ...
3
votes
2answers
171 views
how to rewrite history to remove executable bit in git
I have imported a rather large repository from another SCM into git. Unfortunately the migration was done (had to be) on Windows and every file got committed into git with the execute bit set. To ...
3
votes
2answers
379 views
Extract git subdirectory while keeping history WITH renames
I'm splitting a big source tree into two separate components and a shared submodule. In order to prepare for this split, I first moved the shared stuff into a single "common" directory, updated all ...
3
votes
1answer
394 views
git surgery - splitting out a single repository into many repositories
I have an existing git repository:
my-repo/
.git/
foo/
foo-content-goes-here
bar/
bar-content-goes-here
I wish to get the following repository structures:
my-foo-repo/
.git/
...
3
votes
1answer
404 views
Importing a Subversion repository with a non-standard layout into Git
I'm trying to (permanently) migrate my group's Subversion repository to Git, but I'm running onto problems trying to clean up its non-standard directory structure.
Some of the project's content is ...
3
votes
2answers
577 views
Splitting a subdirectory with submodules into a separate git repository
As a subset of the question detach-subdirectory already made before and considering the fact that even though a lot of questions were made about the process of splitting and merging git repositories, ...
3
votes
1answer
617 views
Using git filter-branch to rewrite authors/committers and commit messages simultaneously
I have a Git repository originally imported from Subversion. Parts of the author/committer information are wrong, which is not Git's fault but mostly due to sloppy committing with Subversion.
I ...
3
votes
2answers
390 views
Can tags be automatically moved after a git filter-branch and rebase?
edit The question boils down to "Can git rebase be instructed to rebase tags, too?" But an answer to the original question would also help.
Asking How to prepend the past to a git repository? I ...
2
votes
2answers
120 views
completely removing a file from git repo (from a certain point in time)
I've got a repo with about 2030 commits. At around commit 2000 a file was modified which caused it's size to travel from about 20M to 1.2 GB accidently. Is it possible to rewrite the history to remove ...
2
votes
3answers
358 views
Git: purging file from repo failed
I tried to remove a file from my remote repo by running:
git filter-branch --index-filter 'git rm --cached --ignore-unmatch Rakefile' HEAD
But Git complains that
Cannot create new backup. A ...
2
votes
1answer
224 views
Splitting a set of files within a git repo into their own repository, preserving relevant history [closed]
Possible Duplicate:
How to split a git repository while preserving subdirectories?
At one point I added my code to an existing git repo, and have committed to it quite a lot since, while ...
2
votes
1answer
119 views
How do I preserve tags when filtering a repository?
Is there a way to move a repository, and all its tags, to be a subdirectory of another repository in an automated fashion?
For reasons, a project was split into multiple repositories. Now we see ...
2
votes
1answer
285 views
Extract out changes to single file in a range of git commits
The build system I work with usually requires that the project data is committed to the local repository before a full build can be performed. This -- along with my usual habit of committing ...
2
votes
1answer
484 views
Move .git folder up in working tree hierarchy
Yesterday I did one of these operations (see code snippet below) on my git repo in order to effectively move my project up a few folders in the folder hierarchy. This basically lists all files and ...
2
votes
1answer
398 views
How do I split a Git repository cleanly?
This question took me part of the way, but I'm still missing something.
I have a single-user repository (so no problems with rewriting history vs push/pull) where I have developed product code and ...
2
votes
1answer
441 views
How to modify git repository to add submodules in ALL the past revisions?
I migrated my SVN repository successfully with Tags into Git using git svn-clone. However, git svn-clone does not migrate svn:externals. Hence, I decided to modify branch tree using git filter-branch.
...
2
votes
1answer
797 views
How can I move a directory in a Git repo for all commits?
Let's say I have a repo that includes this directory structure:
repo/
blog/
_posts/
some-post.html
another-file.txt
I want to move _posts to the top level of the repo, so the ...
1
vote
2answers
140 views
Move files between Git repos while preserving history [closed]
Possible Duplicate:
How to move files from one git repo to another (not a clone), preserving history
I followed the steps at
How to move files from one git repo to another (not a clone), ...
1
vote
1answer
87 views
Git push changes made via filter-branch
I cut the history of my master branch into an old_stuff branch, via the advice of this Q&A: How do I remove the old history from a git repository? . To save you a click-through, the process ...
1
vote
2answers
106 views
Git: how to remove history before a specific commit
I.e., I have:
root -- c1 -- c2 -- .. - c1000 -- c1001 -- c1002 -- .. -- c2000 -- top
and I want to have:
root = c1000 -- c1001 -- c1002 -- .. -- c2000 -- top
How?
(I guess I can do via git ...
1
vote
2answers
190 views
How to move a subdirectory from a branch in one git repository to a branch in a different repository, preserving history?
I've got a directory containing utility libraries that were developed in a branch in one git repository, but it turns out they really belong in a different directory in a different project. I've read ...
1
vote
5answers
350 views
Git remove files from repository, Github and commiters
Somebody accidentally checked in 80 megs worth of JPG's into our git repository and pushed it to github central repository.
A few people since pulled these changes.
Apart from shooting the ...
1
vote
1answer
125 views
Detach subdirectory (that was renamed!) into a new repo
I have a repository and I would like to detach one of its directories into a new repo. This is a perfect place to get started, there is one caveat, however: the directory that I want to detach was ...
1
vote
1answer
162 views
git ignores $GIT_AUTHOR_DATE — is this a bug?
EDIT: Summary: Git does not allow dates before 1973/03/03 09:46:40 (epoch+100000000s) given in its "internal date format" (seconds since the epoch). This is to allow "20110224" as short form of ...
1
vote
1answer
290 views
After filtering master, how do I retrieve stashed changes on the old master?
I followed GitHub's instructions for removing sensitive files from a git repository because I wanted to remove some binaries that should not have been checked in.
My first invocation of the git ...
1
vote
1answer
138 views
What is the impact on cloned repositories after a git filter-branch --index-filter 'git rm …'
I have recently extracted a few subdirectories from a shared git repository with
git filter-branch --subdirectory-filter foodir -- --all
Now I have the subdirectories still left in the central ...
1
vote
1answer
436 views
How to detach subdirectory in Git but keep all branches
I have been following the Answers to this question Detach subdirectory into separate Git repository and had some good successes with simple Subdirectories that are only on one branch but now I am ...
1
vote
1answer
64 views
Filter Out Branch in Git when Cloning
I have a large repository that I am trying to clone, but there seems to be a few PSD files that have been added that I can't avoid at the current moment. I have a specific path on the repository that ...
1
vote
0answers
50 views
filtering out other files, respecting renames
I've got a repository that effectively contains a bunch of different modules. I'd like to split it out into separate repositories, keeping the version history of the files in those repositories.
A ...
0
votes
0answers
37 views
Detach some files into a separate Git repository
I know there is a big thread Detach subdirectory into separate Git repository but there are always some variations. My task differentiates from the above question is that there are some files instead ...
0
votes
1answer
40 views
git: can't push changes after using filter-branch to remove file
I have an app on heroku, and unfortunately our git repository had some files that shouldn't be in it committed from the beginning.
But now other people are about to collaborate in the project and ...
0
votes
1answer
86 views
git push after git filter-branch rejected
I am separating one git repo into 3. I've used Detach subdirectory into separate Git repository to separate folder and pushed them successfully to new git repos. On the existing repo, I've used the ...
0
votes
1answer
76 views
How do I enable shell options in git?
I want to use extended globbing in an "index-filter" , e.g.
git filter-branch --index-filter "git rm --cached --ignore-unmatched Modules/!(ModuleA|ModuleB)"
but I get an error:
eval: line ...
0
votes
2answers
102 views
How to get a list of all refs a git push would push?
We're trying to implement a git workflow where there exists a pre-receive hook on the remote repo to validate that all pushed refs have commit messages that contain certain required information. In ...
0
votes
1answer
176 views
How fix git log after use hg-fast-export.sh?
my git repo seem to be corrupted.
$ git push -u origin master
Counting objects: 16157, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5794/5794), done.
error: object ...