Understand your Git history!
Go to file
2022-05-01 11:15:30 +02:00
.github/workflows Merge pull request #124 from Murmele/updateGit 2022-05-01 10:49:04 +02:00
conf Merge pull request #72 from stefanknotzer/remove-unused-code 2021-12-29 20:13:02 +01:00
dep LEXlua must be added, otherwise the programm crashes. Include as submodule 2022-05-01 11:15:30 +02:00
docs add space otherwise it gets detected as heading 2022-04-30 19:22:09 +02:00
l10n format code 2022-05-01 09:51:34 +02:00
pack format code 2022-05-01 09:51:34 +02:00
rsrc update all documents for release 1.1.0 2022-04-30 12:56:39 +02:00
src - update scintilla version which fixes building with Xcode 12 2022-05-01 11:13:18 +02:00
test format code 2022-05-01 09:51:34 +02:00
.clang-format add code formatting 2022-05-01 09:19:07 +02:00
.gitignore add ignore 2020-11-19 19:11:35 +01:00
.gitmodules LEXlua must be added, otherwise the programm crashes. Include as submodule 2022-05-01 11:15:30 +02:00
cl-fmt.sh set minimum clang-format version to 13! 2022-05-01 09:19:08 +02:00
CMakeLists.txt format code 2022-05-01 09:51:34 +02:00
LICENSE.md update copyright 2022-04-29 17:49:26 +02:00
README.md update all documents for release 1.1.0 2022-04-30 12:56:39 +02:00

Gittyup Status Donate Liberapay

Gittyup

Gittyup is a graphical Git client designed to help you understand and manage your source code history. The pre-release is available either as pre-built flatpak for Linux, 32 / 64 binary for Windows, or, can be built from source by following the directions below.

Gittyup is a continuation of the GitAhead client.

Gittyup

Features

To get an overview of the current features please have a look at the Github Page

How to Get Help

Ask questions about building or using Gittyup on Stack Overflow 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. Remember to search for existing issues before creating a new one.

If you still need help, check out our Matrix channel Gittyup:martix.org.

Build Environment

  • C++11 compiler
    • Windows - MSVC >= 2017 recommended
    • Linux - GCC >= 6.2 recommended
    • macOS - Xcode >= 10.1 recommended
  • CMake >= 3.3.1
  • Ninja (optional)

Dependencies

External dependencies can be satisfied by system libraries or installed separately. Included dependencies are submodules of this repository. Some submodules are optional or may also be satisfied by system libraries.

External Dependencies

  • Qt (required >= 5.12)

Included Dependencies

  • libgit2 (required)
  • cmark (required)
  • git (only needed for the credential helpers)
  • libssh2 (needed by libgit2 for SSH support)
  • openssl (needed by libssh2 and libgit2 on some platforms)

Note that building OpenSSL on Windows requires Perl and NASM.

How to Build

Initialize Submodules

git submodule init
git submodule update

Build OpenSSL

# Start from root of gittyup repo.
cd dep/openssl/openssl

Win:

perl Configure VC-WIN64A
nmake

Mac:

./Configure darwin64-x86_64-cc no-shared
make

Linux:

./config -fPIC
make

Configure Build

# Start from root of gittyup repo.
mkdir -p build/release
cd build/release
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../..

If you have Qt installed in a non-standard location, you may have to specify the path to Qt by passing -DCMAKE_PREFIX_PATH=<path-to-qt> where <path-to-qt> points to the Qt install directory that contains bin, lib, etc.

Build

ninja

How to Install

Linux

The easiest way to install Gittyup is by using Flatpak.

Arch Linux

Install the gittyup package from the Arch User Repository.

git clone https://aur.archlinux.org/gittyup.git
cd gittyup
makepkg -si

Or use an AUR helper. Install gittyup-git for the VCS build.

How to Contribute

We welcome contributions of all kinds, including bug fixes, new features, documentation and translations. By contributing, you agree to release your contributions under the terms of the license.

Contribute by following the typical GitHub workflow for pull requests. Fork the repository and make changes on a new named branch. Create pull requests against the master branch. Follow the seven guidelines to writing a great commit message.

License

Gittyup and its predecessor GitAhead are licensed under the MIT license. See LICENSE.md for details.