We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e20428c commit b5b3180Copy full SHA for b5b3180
EasyKey.git/ezk-git-giob.sh
@@ -53,7 +53,10 @@ currentObjects() {
53
importantLog "branch: $branch"
54
# Step 2: Get the commit object from the branch
55
commit=$(git rev-parse "$branch")
56
- importantLog "head commit: $commit"
+ echo "Enter custom commit to explore or press enter to take branch head!"
57
+ read ccommit
58
+ [ "$ccommit" != "" ] && commit=$ccommit;
59
+ importantLog "commit: $commit"
60
# Step 3: Get the tree object from the commit object
61
tree=$(git cat-file -p "$commit" | awk '/^tree/ {print $2}')
62
importantLog "tree: $tree"
0 commit comments