Posts

Showing posts with the label gitkraken

File History in GitKraken

Image
File History in GitKraken I am looking for a solution in GitKraken to view complete file history past renamed changes. I have been using the fuzzy finder in GitKraken Free Version since very long but couldn't find any option to view the history of the file before it is renamed. In Git, this could be achieved by: git log --follow filename git log --follow filename Any help would be greatly appreciated. 1 Answer 1 If git correctly realized the file was renamed, GitKraken will show you if you look at the files history (via Fuzzy Finder or right click -> File History). Below the latest commit shown in the commit list, it will say RENAMED from <old_filename> . When you click <old_filename> , the old files history will be shown, with a hint at the topmost commit saying RENAMED to <new_filename> . RENAMED from <old_filename> <old_filename> RENAMED to <new_filename...