一个提交不一定是一个分支,所以你怎么看和管理这些提交? 此外,有可能看从gitk这些提交?
非常感谢!
PS:只是为了让事情更清晰,下面是一个例子:
git init
git commit
touch toto
git add toto
git commit -a
echo $RANDOM > toto
git commit -a
git checkout f798e54 #checkout initial commit
echo $RANDOM > toto
git commit -a #"untracked commit"
gitk --all
git branch
git log
git checkout master #back on the main branch
gitk --all #untracked commit is lost?
git log
git branch
我怎样才能让我的“未经跟踪的承诺”回来了?