Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f92365d
CLI Design Pattern (#1)
adamgracikowski Jul 18, 2025
ba36609
Command `config` (#2)
adamgracikowski Jul 21, 2025
0c9f0a1
Command `ignore` (#3)
adamgracikowski Jul 27, 2025
44c9af9
Command `plugins` (#5)
adamgracikowski Sep 15, 2025
30bc8ff
Feature/command add (#4)
mikolajkarbowski Sep 20, 2025
828f088
Plugins Improvements (#6)
adamgracikowski Sep 22, 2025
7221611
Blob Storage (#7)
mikolajkarbowski Sep 29, 2025
48ce858
Fix/ignore meva folder (#8)
mikolajkarbowski Oct 3, 2025
abeacbe
Command `commit` (#9)
mikolajkarbowski Oct 12, 2025
0843480
Command `ls-files`
adamgracikowski Oct 15, 2025
7bc4532
Revision Resolver (#11)
mikolajkarbowski Oct 15, 2025
1859052
Feature/command ls tree (#12)
mikolajkarbowski Oct 17, 2025
4e0288a
Command `diff` (#13)
adamgracikowski Oct 20, 2025
f55b0b2
Command `show` (#14)
adamgracikowski Oct 21, 2025
77a2877
Improvement/prevent empty commit (#21)
mikolajkarbowski Oct 21, 2025
9405610
Feature/command log (#22)
mikolajkarbowski Oct 26, 2025
a4365a1
Command `status` (#24)
adamgracikowski Oct 28, 2025
697e194
`add` for deleted files (#26)
mikolajkarbowski Oct 28, 2025
7aa9864
Feature/command restore (#28)
mikolajkarbowski Nov 15, 2025
b353dfb
Dependency Injection Refactor (#29)
mikolajkarbowski Nov 16, 2025
76ea67b
SSH Server & `clone` command (#30)
adamgracikowski Nov 21, 2025
c11d9ea
Command `remote` (#31)
adamgracikowski Nov 24, 2025
a48dac2
Feature/branch (#33)
mikolajkarbowski Nov 26, 2025
c3ec0de
Command `fetch` (#34)
adamgracikowski Nov 29, 2025
e17d17e
Command `clone` improvements (#35)
adamgracikowski Dec 1, 2025
77bfb39
Issues #27, #17 and #16 (#36)
adamgracikowski Dec 17, 2025
50ae7cf
First commit panic (#40)
mikolajkarbowski Dec 18, 2025
c1ae22c
GUI Template (#37)
adamgracikowski Dec 25, 2025
50f7aaa
Fix `restore` (#47)
mikolajkarbowski Dec 30, 2025
02f32f7
GUI Improvements (#43)
adamgracikowski Dec 30, 2025
bd2eba3
Missing global config, issue #25 (#49)
adamgracikowski Dec 30, 2025
decfc0d
GUI for `merge` (#52)
adamgracikowski Jan 4, 2026
861d111
Issues #50 & #53 (#54)
adamgracikowski Jan 7, 2026
19f2750
Command `push` (#51)
adamgracikowski Jan 11, 2026
be40744
Feature/command checkout (#56)
mikolajkarbowski Jan 12, 2026
10d8ad9
Initialize a new empty index (#57)
mikolajkarbowski Jan 12, 2026
36ef675
Improvements after testing the presentation scenario (#58)
adamgracikowski Jan 13, 2026
770f461
Fix/save index (#59)
mikolajkarbowski Jan 13, 2026
83cb3d0
Readme (#61)
adamgracikowski Jan 14, 2026
34765d1
Calculate `ahead`/`behind` (#60)
mikolajkarbowski Jan 14, 2026
c5967a6
Remote error handling (#62)
adamgracikowski Jan 15, 2026
2114c57
Command `merge` (#63)
adamgracikowski Jan 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,36 @@ target
# Contains mutation testing data
**/mutants.out*/

.meva

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Ignore all the files created by running `cargo run --bin meva -- init` at the root of the project
.idea/workspace.xml
.idea/dictionaries/project.xml
.idea/codeStyles/*
.idea/vcs.xml
.idea/inspectionProfiles/**
.idea/inspectionProfiles/Project_Default.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

/server_files
Loading