Merge pull request #145 from Murmele/gh-pages

Add github page
This commit is contained in:
Murmele 2022-04-29 17:45:02 +02:00 committed by GitHub
commit 0c634768d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 87 additions and 3 deletions

View File

@ -4,13 +4,17 @@ Gittyup
==================================
Gittyup is a graphical Git client designed to help you understand and manage your source code history. The [pre-release](https://github.com/Murmele/Gittyup/releases)
is available either as pre-built [flatpak for Linux](https://github.com/Murmele/Gittyup/releases/download/latest/com.github.Murmele.Gittyup.flatpak), [32](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup-win32-1.0.0-dev.exe) / [64](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup-win64-1.0.0-dev.exe) binary for Windows,
is available either as pre-built [flatpak for Linux](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup.flatpak), [32](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup-win32-1.0.0-dev.exe) / [64](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup-win64-1.0.0-dev.exe) binary for Windows,
or, can be built from source by following the directions [below](https://github.com/Murmele/Gittyup#how-to-build).
Gittyup is a continuation of the [GitAhead](https://github.com/gitahead/gitahead) client.
![Gittyup](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/main_dark_orig.png)
Features
---------------
To get an overview of the current features please have a look at the [Github Page](https://murmele.github.io/Gittyup/)
How to Get Help
---------------

1
docs/_config.yml Normal file
View File

@ -0,0 +1 @@
theme: jekyll-theme-slate

79
docs/index.md Normal file
View File

@ -0,0 +1,79 @@
<!--- Github page main file --->
Gittyup is a graphical Git client designed to help you understand and manage your source code history. Gittyup is an open source software developed by voluntiers, if you like the application please support us [![Donate Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/Gittyup/donate)
<!---
The release version is available for
- [flatpak for Linux](https://github.com/Murmele/Gittyup/releases/download/stable/Gittyup.flatpak)
- [32](https://github.com/Murmele/Gittyup/releases/download/stable/Gittyup-win32-1.0.0-dev.exe) / [64](https://github.com/Murmele/Gittyup/releases/download/stable/Gittyup-win64-1.0.0-dev.exe) binary for Windows
--->
The [development version](https://github.com/Murmele/Gittyup/releases) is available either as pre-built for
- [flatpak for Linux](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup.flatpak),
- [32](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup-win32-1.0.0-dev.exe) / [64](https://github.com/Murmele/Gittyup/releases/download/latest/Gittyup-win64-1.0.0-dev.exe) binary for Windows
or, can be built from source by following the directions in the [Gittyup Repository](https://github.com/Murmele/Gittyup#how-to-build).
Gittyup is a continuation of the [GitAhead](https://github.com/gitahead/gitahead) client.
![Gittyup](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/main_dark_orig.png)
How to Get Help
---------------
Ask questions about building or using Gittyup on
[Stack Overflow](http://stackoverflow.com/questions/tagged/gittyup) by
including the `gittyup` tag. Remember to search for existing questions
before creating a new one.
Report bugs in Gittyup by opening an issue in the
[issue tracker](https://github.com/Murmele/gittyup/issues).
Remember to search for existing issues before creating a new one.
If you still need help, check out our Matrix channel
[Gittyup:martix.org](https://matrix.to/#/#Gittyup:matrix.org).
Features
--------
# Single branch view to focus on your work
Select "Show Selected Branch" in the drop down menu above the commit list
![Single branch](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/main_show_selected_branch.png)
# Single line staging
by eighter clicking on the checkboxes next to each line or by selecting the relevant code and pressing "S". For unstaging you can uncheck the checkboxes or press "U". To revert changes, select the text and press "R".
![Single line staging](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/double_treeview_single_line_staging.png)
# Fullscreen
of the history or the change dialog by pressing Ctrl+M
# Staring commits
to find specific commits much faster
![Staring commits](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/starring_commits.png)
# Tag selection
Use an existing tag as template for your next tag. So you never have to look which is your latest tag
![Tag selection](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/tag_selection.png)
# Tree View
To visit the blame with its history for unchanged files
![Tree View](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/treeview.png)
# Blame View
See blame of the current version with an integrated timeline to see who changed which line
# Commit message template
Create you commit messages according a defined template
![Commit message template selection](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/CommitMessageTemplateSelection.png)
![Commit message template editor](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/CommitMessageTemplateEditor.png)
# Tabs
to be able to switch fast between repositories
# And a lot more ...

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -22,8 +22,8 @@ file(GLOB LUA_PLUGINS ${CONF_DIR}/plugins/*.lua ${CONF_DIR}/plugins/*.txt)
qt5_add_resources(RESOURCES ${RSRC_DIR}/resources.qrc)
# Generate acknowledgments.
set(DOC_SOURCE_DIR ${CMAKE_SOURCE_DIR}/doc)
set(DOC_BINARY_DIR ${CMAKE_BINARY_DIR}/doc)
set(DOC_SOURCE_DIR ${CMAKE_SOURCE_DIR}/docs)
set(DOC_BINARY_DIR ${CMAKE_BINARY_DIR}/docs)
set(CHANGELOG_MD ${DOC_SOURCE_DIR}/changelog.md)
set(ACKNOWLEDGMENTS_MD ${DOC_SOURCE_DIR}/acknowledgments.md)
set(PRIVACY_MD ${DOC_SOURCE_DIR}/privacy.md)