#git bot interface
History of !reflog
- The git reflog (`git log -g`) temporarily (90 days by default) snapshots your branch states at each operation that changes the branch, making it easy to undo e.g. merges and rebases. The usual warnings about !rewriting/undoing history apply. See https://sukima.github.io/GitFixUm/ for full details.
By canton7 at 2020-01-24 09:44:47
- tThe git reflog (`git log -g`) temporarily (90 days by default) snapshots your branch states at each operation that changes the branch, making it easy to undo e.g. merges and rebases. The usual warnings about !rewriting/undoing history apply. See https://sukima.github.io/GitFixUm/ for full details.
By canton7 at 2020-01-24 09:44:41
- The git reflog (`git log -g`) temporarily (90 days by default) snapshots your branch states at each operation that changes the branch, making it easy to undo e.g. merges and rebases. The usual warnings about !rewriting/undoing history apply. See http://sethrobertson.github.com/GitFixUm/ for full details.
By jast at 2018-09-24 08:03:11
- The git reflog (`git log -g`) temporarily (2+ weeks) snapshots your branch states at each operation that changes the branch, making it easy to undo e.g. merges and rebases. The usual warnings about !rewriting/undoing history apply. See http://sethrobertson.github.com/GitFixUm/ for full details.
By jast at 2018-09-24 08:02:10
- The git reflog (`git log -g`) records the SHAs of your HEADs for 2+ weeks. `git checkout -b myrestore OLDSHA` and `git reset --hard OLDSHA` will relink to that state via a new and current branch respectively, see http://sethrobertson.github.com/GitFixUm/ for full details. WARNING: reset --hard will trash any uncommitted changes! Visualize with: gitk --all --date-order `git log -g --pretty=%H`
By SethRobertson at 2012-02-07 15:32:05
- The git reflog (`git log -g`) records the SHAs of your HEADs for 2+ weeks. `git checkout -b myrestore OLDSHA` and `git reset --hard OLDSHA` will relink to that state via a new and current branch respectively, see https://gist.github.com/1612395 for full details. WARNING: reset --hard will trash any uncommitted changes! Visualize with: gitk --all --date-order `git log -g --pretty=%H`
By SethRobertson at 2012-01-17 03:09:44
- The git reflog (`git log -g`) records the SHAs of your previous git commands for 2+ weeks, which aides recovery. `git checkout -b myrestore OLDSHA` and `git reset --hard OLDSHA` will get you back to that state via a new and current branch respectively. WARNING: reset --hard will trash any uncommitted changes! Visualize with: gitk --all --date-order `git log -g --pretty=%H`
By SethRobertson at 2011-12-19 22:14:06
- The git reflog (`git log -g`) records the SHAs of your previous git commands for 2+ weeks, which aides recovery. `git checkout -b myrestore OLDSHA` and `git reset --hard OLDSHA` will get you back to that state via a new and current branch respectively. WARNING: reset will trash any uncommitted changes! Visualize with: gitk --all --date-order `git log -g --pretty=%H`
By SethRobertson at 2011-12-19 22:13:30
- The git reflog (`git log -g`) hold references to old HEADs which were the results of the commands you issued. It saves these old references for at least two weeks, so you recover old state. `git checkout -b myrestore OLDSHA` and `git reset --hard OLDSHA` will get you back to that state via a new and current branch. WARNING: reset will trash any uncommitted changes!
By SethRobertson at 2011-12-19 17:55:33