git-slides

Crates.iogit-slides
lib.rsgit-slides
version0.4.0
sourcesrc
created_at2024-07-23 22:57:38.425222
updated_at2024-08-10 18:03:45.275244
descriptionNavigate through Git commits like presentation slides.
homepage
repositoryhttps://github.com/qrichert/git-slides.git
max_upload_size
id1313357
size93,129
Quentin Richert (qrichert)

documentation

README

git-slides

license: GPL v3+ GitHub Tag crates.io

Navigate through Git commits like presentation slides.

$ git slides next
  1/7 7171da7 Introduction to Version Control: Git Basics
  2/7 ebde0ee Essential Git Commands: A Practical Overview
* 3/7 813f075 Branching Strategies: Enhancing Workflow Efficiency
  4/7 865c830 Collaboration with Git: Merging and Conflict Resolution
  5/7 ebe0dc2 Git Workflows: Centralized vs. Distributed Models
  6/7 9202f1e Advanced Git Features: Stashing, Rebasing, and Tagging

Usage

The executable must be on your PATH, then you can use it as a regular Git command:

$ git slides start feat/my-presentation
usage: git-slides [<options>] <command> [<args>]

Commands:
  start [<ref>]        Start presentation.
  stop                 End presentation.
  next, n [<n>]        Go forward one or <n> slides.
  previous, p [<n>]    Go back one or <n> slides.
  go <n>               Go to slide <n>.
  status               Show current status.
  list                 List all slides.

Options:
  -h, --help           Show this message and exit.
  -v, --version        Show the version and exit.

Installation

Directly

$ wget https://github.com/qrichert/git-slides/releases/download/X.X.X/git-slides-X.X.X-xxx
$ sudo install ./git-slides-* /usr/local/bin/git-slides

Manual Build

System-wide

$ git clone https://github.com/qrichert/git-slides.git
$ cd git-slides
$ make build
$ sudo make install

Through Cargo

cargo install git-slides
cargo install --git https://github.com/qrichert/git-slides.git
Commit count: 0

cargo fmt