亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

View every commit step of the Github project
給我你的懷抱
給我你的懷抱 2017-05-02 09:37:19
0
6
898

Background

Recently, I am studying the configuration of Emacs written by a great person. Because it is very complicated, I want to start directly from his first commit and view his commits step by step. I found that I can view the files under each commit on github. list, but the network speed is very slow. If I want to see it locally, how can I view it one commit at a time

Question

1. When I get the hashcode of the first commit directly, git reset --hard a034d
2. Then how do I get to the next commit (that is, the second commit)

給我你的懷抱
給我你的懷抱

reply all(6)
僅有的幸福
git reflog  是可以的,建議你使用 tig 來查看也是不錯(cuò)的
巴扎黑

You can use git reflog to view your commits

黃舟

It seems that the desktop client of git can do this, right?

PHPzhong

If you want to be simple, you can use git graphical tools, sourcetree, and gitkraken to easily do this. If you want to play with the command line, you can use git show HEAD^ to view the code history of the most recent submission, and git show HEAD^10 to view the code history of the 10th recent submission. For details, you can use git show --help to look at the documentation

大家講道理

You can use git log --graph (or not --graph) to view the IDs of previous operations, and then use reset --hard xxxxxxx to switch to its next submission

漂亮男人

Because I don’t like GUI very much, so I used tig

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template