2022-09-06 02:08:24 +02:00
# Gitnuro - Multiplatform Git Client
[![Latest release ](https://img.shields.io/github/v/release/JetpackDuba/Gitnuro?color=blue&label=latest%20release )](https://github.com/JetpackDuba/Gitnuro/releases/latest)
![Icon ](res/img/cover.png )
2021-11-05 04:28:12 +01:00
A FOSS Git client based on (Jetbrains) Compose and JGit.
2022-09-06 02:08:24 +02:00
The main goal of Gitnuro is to provide a multiplatform open source Git client without any kind of constraint to how you can use it nor relying on web technologies.
2021-11-05 04:28:12 +01:00
2022-09-06 02:08:24 +02:00
## Features
2022-04-02 04:30:09 +02:00
2022-09-06 02:08:24 +02:00
Gitnuro has support for the following features:
2022-01-04 20:17:21 +01:00
- View diffs for text based files.
- View your history log and all its branches.
- Add (stage) & reset (unstage) files.
- Stage & unstage of hunks.
- Checkout files (revert changes of uncommited files).
- Clone.
- Commit.
- Reset commits.
- Revert commits.
2022-02-05 03:01:03 +01:00
- Amend previous commit.
2022-01-31 15:29:39 +01:00
- Merge.
- Rebase.
2022-01-04 20:17:21 +01:00
- Create and delete branches locally.
- Create and delete tags locally.
- View remote branches.
- Pull and push.
- Stash and pop stash.
- Checkout a commit (detached HEAD).
2022-01-31 15:29:39 +01:00
- View changes/diff in images (side to side comparison).
2022-02-01 14:44:01 +01:00
- Force push.
2022-02-04 18:54:58 +01:00
- Remove branches from remote.
2022-02-17 20:09:53 +01:00
- Manage remotes.
2022-04-01 19:56:08 +02:00
- Start a new local repository.
2022-04-02 04:30:09 +02:00
- Search by commit message/author/commit id.
2022-08-07 00:07:05 +02:00
- Rebase interactive.
- Blame file.
- View file history.
2022-09-06 02:08:24 +02:00
- Theming.
- Side by side diff in text files (will be available at 1.1.0).
- Submodules support (will be available at 1.1.0).
2022-01-04 20:17:21 +01:00
2022-09-06 02:08:24 +02:00
As it's still a young project, there are some interesting features that are not yet implemented but will be in the future:
2022-01-04 20:17:21 +01:00
2022-04-01 19:56:08 +02:00
- Create/Apply patches
2022-01-04 20:17:21 +01:00
- Remove tags from remote.
- View stashes in the log tree.
2022-09-06 02:08:24 +02:00
## Contributing
If you find a bug or you would like to suggest a new feature, feel free to open an issue.
Pull requests are also welcome but please create an issue first if it's a new feature.
## FAQ
> Is Gitnuro completly free?
Yes, free in both meanings of the word (in money and freedom).
> Does Gitnuro keep track of my data?
Gitnuro does not track data in any way, don't worry.
> I don't like the built-in themes, can I create a custom one?
Gitnuro includes the option to set custom themes in a JSON format. Keep in mind that themes may break with new releases, making the default theme the fallback option.
2022-01-17 13:07:35 +01:00
2022-09-06 02:08:24 +02:00
For the latest stable version (1.0.1), you can use this JSON as an example:
2022-01-17 13:07:35 +01:00
2022-09-06 02:08:24 +02:00
```
{
"primary": "FF456b00",
"primaryVariant": "FF456b00",
"onPrimary": "FFFFFFFFF",
"secondary": "FF9c27b0",
"primaryText": "FF141f00",
"secondaryText": "FF595858",
"error": "FFc93838",
"onError": "FFFFFFFF",
"background": "FFe7f2d3",
"backgroundSelected": "C0cee1f2",
"surface": "FFc5f078",
"secondarySurface": "FFedeef2",
"headerBackground": "FFF4F6FA",
"borderColor": "FF989898",
"graphHeaderBackground": "FFF4F6FA",
"addFile": "FF32A852",
"deletedFile": "FFc93838",
"modifiedFile": "FF0070D8",
"conflictingFile": "FFFFB638",
"dialogOverlay": "AA000000",
"normalScrollbar": "FFCCCCCC",
"hoverScrollbar": "FF0070D8"
}
```
2022-01-17 13:07:35 +01:00
2022-09-06 02:08:24 +02:00
Colors are in ARGB Hex format.
2022-01-04 20:17:21 +01:00
2022-09-06 02:08:24 +02:00
> Why isn't the Mac version signed?
2022-02-02 00:26:46 +01:00
2022-09-06 02:08:24 +02:00
The cost of the Apple Developer Program is quite high with a platform that currently has very few users. I may pay for it if it's a very requested feature but not for now.