2023-12-22 09:03:51 +08:00
2023-12-22 09:03:51 +08:00
2023-12-21 20:44:15 +08:00
2023-12-19 22:09:01 +08:00
2023-12-20 23:25:54 +08:00
2023-12-22 03:34:58 +08:00
2023-12-22 09:03:51 +08:00

MIT: git implementation in Rust

Git in Rust. 用 Rust 编写的简易 Git

主要功能

  • 支持 git init, git add, git rm, git commit

    • init
    • add
    • rm
    • commit
  • 支持分支 git branch, git checkout

    • branch
    • switch
    • restore
    # 撤销未暂存的文件更改不涉及un trached file)
    git restore path
    git restore . # 全部
    
  • 支持简单的合并 git merge

    • Merge(FF)
Description
Mini-Git in Rust. 用Rust实现的简易Git
Readme 376 KiB
Languages
Rust 100%