1
vote
3answers
224 views
Is there a way to add a specific version of a file to the git index?
The reason I am asking this is that I had accidentally done a git commit -a that included a file I did not yet want to commit. My solution was to do the following:
git …
4
votes
How often should you use git-gc?
Note that the downside of garbage-collecting your repository is that, well, the garbage gets collected. As we all know as computer users, files we consider garbage right now might turn out to be ve …
1
vote
How do you discard unstaged changes in git?
@Ben Collins:
Wouldn’t a simple “git checkout HEAD -- $(git ls-files -m)” work?
…
4
votes
Why isn’t the git stash unique per branch?
As mentioned, if you want a “per-branch stash,” you really want a new branch forking off from the existing branch.
Also, besides the already mentioned fact that the stash allows you to pull …
9
votes
Recover dropped stash in git
Try this:
git fsck | awk '/dangling commit/ {print $3}'
It’s much faster than passing --unreachable, though it doesn’t show you all the unrea …
0
votes
How do I add an empty directory to a git repository
Andy Lester is right, but if your directory just needs to be empty, and not empty empty, you can put an empty .gitignore file in there as …
2
votes
git-svn merges and commit details
You can use grafts to teach git about merges that are not denoted in the commit object in question.
echo "$merge_sha1 $parent1_sha1 $parent2_sha1" >> .git/info/grafts
…
7
votes
Undoing a git rebase
Resetting the branch to the dangling commit object of its old tip is of course the best solution, because it restores the previous state without expending any effort. But if you happen to have lost …
11
votes
What GUIs exist for GIT on Windows
The git wiki has a comprehensive list of frontends and interfaces.
…
8
votes
Can I push to more than one repository in a single command in git?
You can have several URLs per remote in git, even though the git remote command did not appear to expose this last I checked. In .git/config, put something like this:
…
32
votes
How do I edit an incorrect commit message in git
If the commit you want to fix isn’t the most recent one:
git rebase --interactive $parent_of_flawed_commit
If you want to fix several flawed commits, pass the …
8
votes
Checkout subdirectories in Git?
There is no real way to do that in git. And if you won’t be making changes that affect both trees at once as a single work unit, there is no good reason to use a single repository for both. I thoug …
2
votes
Fatal Git Error when switching branch
By explicitly specifying “git checkout HEAD $blah” instead of just saying “git checkout $blah”, assuming you did want to check out a file.
You don’t say what you w …
0
votes
Setting gc.refLogExpire
I’m not sure where the format is documented, if at all, but git reflog uses the approxidate function from …
3
votes
git: squash my commit?
There is no such command. You can only easily amend the most recent commit; if you want to amend a different one, you need to use git rebase, as you are already doing.
…
