The git-reflog tag has no wiki summary.
4
votes
1answer
71 views
Strange Git behavior when checking out HEAD (and variants) on Windows
Setup
Let's imagine a simple repository as follows. One can see that HEAD points at master
$ git log --decorate --graph
* commit 99d20608088ba9c74b57e36a1b0b79ff2be42d68 (HEAD, master)
| Author: ...
2
votes
2answers
20 views
git checkout PREV
Is there a simple way to switch back to the branch you were most recently on prior to the current one? The same concept as "cd -" from the command line.
When working on multiple branches, this can be ...
1
vote
1answer
60 views
Restore changes that were overwritten by git pull [duplicate]
I'm having an issue with git where I can't retrieve changes that were overridden by git pull.
I had started work on a project without a GitHub repository, which I then later made. I forked the ...
0
votes
1answer
30 views
How do you increase the number of entries output by git reflog?
I have a branch that I deleted (with -D) but I need it back. I thought the git reflog command would be a good place to look. When I run it I only see 50 actions displayed, and I can't find any ...
0
votes
2answers
43 views
why new head and old head have the same sha id using git reflog?
i think these should be two different HEADS, so why they corresponds to the same sha value, that is 2aad8cb ...
git reflog
2aad8cb HEAD@{0}: checkout: moving from master to xxx_master
2aad8cb ...
2
votes
3answers
117 views
what happened to a commit that doesn't show up in any branches but available in “git show”
I have a commit id available in the bare repo.
git show commit id, shows the commit with the changes.
But the same commit doesn't show up when using the below commands
git branch --contains ...
3
votes
3answers
386 views
Recover files that were added to the index but then removed by a git reset
I added some files to the index but then by mistake I deleted them with git reset --hard. How do I recover them?
Here's what happened:
I added all files using git add .
I then committed
When I ...
8
votes
1answer
185 views
Keep Git Reflog Indefinitely?
I tend to be a bit paranoid about my data, including the ability to recover it.
Git reflog data is pruned after 30 days. Is there a way of setting it so that the reflog data is maintained and kept ...
1
vote
2answers
413 views
Screwed up the master git branch… Can't figure out what I need to revert
I'm working on a git repository that has a branch off of master, we'll call it the ab branch. My team is working on the ab branch and has a pull-request workflow using github. One of my teammates ...