https://github.com/nok/git-walk
Walk up and down in revisions of a Git repository.
https://github.com/nok/git-walk
git workflow
Last synced: 6 months ago
JSON representation
Walk up and down in revisions of a Git repository.
- Host: GitHub
- URL: https://github.com/nok/git-walk
- Owner: nok
- License: mit
- Created: 2017-04-09T23:35:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-29T12:55:58.000Z (over 3 years ago)
- Last Synced: 2025-02-26T03:11:40.907Z (9 months ago)
- Topics: git, workflow
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 9
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
# git-walk
Walk up and down in revisions of a [Git](https://git-scm.com/) repository.
## API
Checkout the last or latest commit:
```
git walk (last|latest)
```
Checkout the first or oldest commit:
```
git walk (first|oldest)
```
Walk down and checkout the previous commit:
```
git walk prev [n_commits]
```
Walk up and checkout the next commit:
```
git walk next [n_commits]
```
## Installation
Clone the repository and register the new command locally:
```bash
git clone https://github.com/nok/git-walk.git && cd ./git-walk && bash ./install.sh
```
## License
The extension is Open Source Software released under the [MIT](license.txt) license.