-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Home
Pierre-Olivier Latour edited this page Nov 23, 2017
·
9 revisions
- GitUp has been extensively optimized and tested on repositories up to 150,000 commits, thousands of files and dozens of branches & tags, which is an order of magnitude more than the vast majority of repos out there.
- However GitUp is not presently designed nor optimized for very large repositories, especially ones with huge amount of files (e.g. like Google Chromium with 80,000 files), and will be quite slow with them.
- Only a subset of Git hooks are supported:
pre-commit
,commit-msg
,post-commit
andpre-push
.- Since Git hooks are run directly from GitUp instead of being executed from the Terminal's shell like with Git command line, some environment variables will differ and this could affect the behavior of the hooks.
- GitUp only supports Git attributes supported by libgit2 i.e.
crlf
,eol
,text
andident
.- GitUp also natively supports Git LFS assuming the command line tool is installed at
/usr/local/bin/git-lfs
.
- GitUp also natively supports Git LFS assuming the command line tool is installed at
- GitUp ignores the actual value of the
core.precomposeUnicode
Git configuration option and assumes it's always true (which should really be the case on OS X anyway). - Git shallow clones are not fully supported: fetching may not work in all cases and merges may not either.
- SSH config files (typically located at
~/.ssh/config
) are ignored by GitUp since it uses libssh2 and not the ssh tool for SSH remote operations.- GitUp first attempts to find SSH private keys using the ssh-agent
- It then tries all private key files in
~/.ssh/
- Pattern based exceptions in Git attribute files are not taken into account due to a bug in libgit2.
- The diff engine assumes all text is UTF-8 encoded.
- Diffs of large single-line files e.g. minified JS / CSS can be slow.
- Even if backward compatible to OS X 10.8.0, GitUp has only been actively tested on OS X 10.10 and later, so it's highly recommended you use a recent version of OS X.
- The window title bar doesn't appear when in full-screen mode on OS X 10.8 / 10.9.
- The Map view can sometimes incorrectly render the further left branch as a dotted line if Virtual Tips are enabled.
- Creating merge requests across projects is not supported for GitLab.