Understand your Git history!
Go to file
Jochen 2239d534f8 add logo-type file for gittyup
dark version (blue) and light version (yellow)
2021-11-19 13:13:29 +01:00
.github/workflows build also for pullrequest 2021-08-01 08:54:19 +02:00
conf Add spell check to commit message editor 2020-11-06 16:16:20 +01:00
dep Replace GitAhead by Gittyup 2021-10-19 15:05:47 +02:00
doc remove GitAhead Changelog 2021-11-19 13:13:27 +01:00
l10n rename translation files 2021-10-19 15:14:01 +02:00
pack Replace flatpak url to the repository 2021-11-17 11:47:39 +01:00
rsrc add logo-type file for gittyup 2021-11-19 13:13:29 +01:00
src disable update dialog 2021-11-19 13:13:28 +01:00
test Merge commit '9ee074e7eb78b2d42dda21cb0dee31a4fd0b363a' 2021-11-17 14:52:50 +01:00
.gitignore add ignore 2020-11-19 19:11:35 +01:00
.gitmodules Add spell check to commit message editor 2020-11-06 16:16:20 +01:00
CMakeLists.txt version1.0.0 2021-11-19 13:13:20 +01:00
LICENSE.md Initial rebrand 2021-10-11 06:29:10 +02:00
README.md Update README.md 2021-11-17 11:44:53 +01:00

Actions Status Actions Status

Gittyup

Gittyup is a graphical Git client designed to help you understand and manage your source code history. It's available as a pre-built binary for Windows, Linux, and macOS, or can be built from source by following the directions below.

Gittyup is a continuation of the GitAhead client.

How to Get Help

Ask questions about building or using Gittyup on Stack Overflow by including the gitahead 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 GitAheadFork: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.15)

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 easies way to install Gittyup is by using Flatpak

Ubuntu:

sudo apt-get install flatpak && flatpak install flathub com.github.Murmele.Gittyup

Arch:

sudo pacman -S flatpak && flatpak install flathub com.github.Murmele.Gittyup

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.