The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
67 views

git reflog not showing branch change

In another question, a user posted the following reflog: 8c48bab HEAD@{16}: checkout: moving from develop to 8c48babb10ec2f8f28f364ce57b5095cb080c133^0 54d8daf HEAD@{17}: commit: changed the how ...
2
votes
3answers
64 views

How to turn a set of amended commits (stored in reflog) into real commits

I was doing a refactoring, and just kept amending every time I made any decent progress. It has gone very well, and I realized it would be nice to be able to show people how I handled such a huge ...
1
vote
1answer
100 views

which commit was cherry-picked?

How can you find out which commit was used in a cherry-pick operation? git reflog only seems to show the resulting commit Sha-1 after the cherry-pick is merged and commited. We need to find the ...
13
votes
1answer
1k views

git reflog expire and git fsck --unreachable

Disclaimer: this question is purely informational and does not represent an actual problem I'm experiencing. I'm just trying to figure out stuff for the sake of it (because I love figuring stuff out, ...
8
votes
2answers
784 views

Query git reflog for all commits to a specific file

Is it possible to check the git reflog for all commits to a specific file. I made a commit to file foo.txt and now it no longer shows in the git history via git log foo.txt I want to search the ...
3
votes
1answer
462 views

How to create reflogs information in an existing bare repository

As you might have known that by default, git doesn't enable reflog updates for new bare repositories. The problem is, I have a long history repository but it was created before I set the flag ...
0
votes
3answers
222 views

git reflog. Is this an appropriate use?

this is hypothetical at the moment, but it's a workflow I would like to put into practice. I have a template that I start all of my web projects from. I am currently using github to store the master ...
1
vote
2answers
242 views

Getting the sha1 of a desired commit from a remote repository

Using git reflog, a user can only access his local reflog information? How can one see the sha1 of a desired commit from a remote repository?
10
votes
2answers
452 views

restore - git reset --hard HEAD^

Unfortunately I did several times git reset --hard HEAD^ losing a quite big chunk of code in several files. Is there a way to restore those commits or in this case to forward where the HEAD was ...