Git 中文文档 Git 中文文档
指南
GitHub (opens new window)
指南
GitHub (opens new window)
  • 起步

    • 1.1 关于版本控制
    • 1.2 git 简史
    • 1.3 git 是什么
    • 1.4 命令行
    • 1.5 安装 git
    • 1.6 初次运行git前的配置
    • 1.7 获取帮助
    • 1.8 起步 - 总结
  • git 基础

  • git 分支

  • 服务器上的 git

  • 分布式 git

  • github

  • git 工具

  • 自定义 git

  • git 与其他系统

  • git 内部原理

GitUp


Work quickly, safely, and without headaches. The Git interface you've been missing all your life has finally arrived.

Git recently celebrated its 10 years anniversary, but most engineers are still confused by its intricacy (3 of the top 5 questions of all time on Stack Overflow are Git related). Since Git turns even simple actions into mystifying commands (“git add” to stage versus “git reset HEAD” to unstage anyone?), it’s no surprise users waste time, get frustrated, distract the rest of their team for help, or worse, screw up their repo!

GitUp is a bet to invent a new Git interaction model that lets engineers of all levels work quickly, safely, and without headaches. It's unlike any other Git client out there from the way it’s built (it interacts directly with the Git database on disk), to the way it works (you manipulate the repository graph instead of manipulating commits).

With GitUp, you get a truly efficient Git client for Mac:

A live and interactive repo graph(edit, reorder, fixup, merge commits…),
Unlimited undo / redoof almost all operations (even rebases and merges),
Time Machine like snapshots for 1-click rollbacksto previous repo states,
Features that don’t even exist natively in Git like a visual commit splitteror a unified reflog browser,
Instant search across the entire repoincluding diff contents,
A ridiculously fast UI, often faster than the command line.

GitUp was created by @swisspol in late 2014 as a bet to reinvent the way developers interact with Git. After several months of work, it was made available in pre-release early 2015 and reached the top of Hacker News along with being featured by Product Hunt and Daring Fireball. 30,000 lines of code later, GitUp reached 1.0 mid-August 2015 and was released open source as a gift to the developer community.

Getting Started


Learn all about GitUp and download the latest release from http://gitup.co.

Read the docs and use GitHub Issues for support & feedback.

Releases notes are available at https://github.com/git-up/GitUp/releases. Builds tagged with a v (e.g. v1.2.3 ) are released on the "Stable" channel, while builds tagged with a b (e.g. b1234 ) are only released on the "Continuous" channel. You can change the update channel used by GitUp in the app preferences.

To build GitUp yourself, simply run the command git clone --recursive https://github.com/git-up/GitUp.git in Terminal, then open the GitUp/GitUp.xcodeproj Xcode project and hit Run.

IMPORTANT:If you do not have an Apple ID with a developer account for code signing Mac apps, the build  will fail with a code signing error. Simply delete the "Code Signing Identity" build setting of the "Application" target to work around the issue:

Alternatively, if you do have a developer account, you can create the file "Xcode-Configurations/DEVELOPMENT_TEAM.xcconfig" with the following build setting as its content:

DEVELOPMENT_TEAM = [Your TeamID]


For a more detailed description of this, you can have a look at the comments at the end of the file "Xcode-Configurations/Base.xcconfig".

GitUpKit


GitUp is built as a thin layer on top of a reusable generic Git toolkit called "GitUpKit". This means that you can use that same GitUpKit framework to build your very own Git UI!

GitUpKit has a very different goal than ObjectiveGit. Instead of offering extensive raw bindings to libgit2, GitUpKit only uses a minimal subset of libgit2 and reimplements everything else on top of it (it has its own "rebase engine" for instance). This allows it to expose a very tight and consistent API, that completely follows Obj-C conventions and hides away the libgit2 complexity and sometimes inconsistencies. GitUpKit adds on top of that a number of exclusive and powerful features, from undo/redo and Time Machine like snapshots, to entire drop-in UI components.

Architecture


The GitUpKit source code is organized as 2 independent layers communicating only through the use of public APIs:

Base Layer (depends on Foundation only and is compatible with OS X and iOS)

Core/ : wrapper around the required minimal functionality of libgit2, on top of which is then implemented all the Git functionality required by GitUp (note that GitUp uses a slightly customized fork of libgit2)
Extensions/ : categories on the Core classes to add convenience features implemented only using the public APIs

UI Layer (depends on AppKit and is compatible with OS X only)

Interface/ : low-level view classes e.g. GIGraphView to render the GitUp Map view
Utilities/ : interface utility classes e.g. the base view controller class GIViewController
Components/ : reusable single-view view controllers e.g. GIDiffContentsViewController to render a diff
Views/ : high-level reusable multi-views view controllers e.g. GIAdvancedCommitViewController to implement the entire GitUp Advanced Commit view

IMPORTANT: If the preprocessor constant DEBUG is defined to a non-zero value when building GitUpKit (this is the default when building in "Debug" configuration), a number of extra consistency checks are enabled at run time as well as extra logging. Be aware that this overhead can significantly affect performance.

GitUpKit API


Using the GitUpKit API should be pretty straightforward since it is organized by functionality (e.g. repository, branches, commits, interface components, etc...) and a best effort has been made to name functions clearly.

Regarding the "Core" APIs, the best way to learn them is to peruse the associated unit tests - for instance see the branch tests for the branch API.

Here is some sample code to get you started (error handling is left as an exercise to the reader):

Opening and browsing a repository:

  1. ``` objc
  2. // Open repo
  3. GCRepository* repo = [[GCRepository alloc] initWithExistingLocalRepository: error:NULL];

  4. // Make sure repo is clean
  5. assert([repo checkClean:kGCCleanCheckOption_IgnoreUntrackedFiles error:NULL]);

  6. // List all branches
  7. NSArray* branches = [repo listAllBranches:NULL];
  8. NSLog(@"%@", branches);

  9. // Lookup HEAD
  10. GCLocalBranch* headBranch;  // This would be nil if the HEAD is detached
  11. GCCommit* headCommit;
  12. [repo lookupHEADCurrentCommit:&headCommit branch:&headBranch error:NULL];
  13. NSLog(@"%@ = %@", headBranch, headCommit);

  14. // Load the *entire* repo history in memory for fast access, including all commits, branches and tags
  15. GCHistory* history = [repo loadHistoryUsingSorting:kGCHistorySorting_ReverseChronological error:NULL];
  16. assert(history);
  17. NSLog(@"%lu commits total", history.allCommits.count);
  18. NSLog(@"%@\n%@", history.rootCommits, history.leafCommits);
  19. ```

Modifying a repository:

  1. ``` objc
  2. // Take a snapshot of the repo
  3. GCSnapshot* snapshot = [repo takeSnapshot:NULL];

  4. // Create a new branch and check it out
  5. GCLocalBranch* newBranch = [repo createLocalBranchFromCommit:headCommit withName:@"temp" force:NO error:NULL];
  6. NSLog(@"%@", newBranch);
  7. assert([repo checkoutLocalBranch:newBranch options:0 error:NULL]);

  8. // Add a file to the index
  9. [[NSData data] writeToFile:[repo.workingDirectoryPath stringByAppendingPathComponent:@"empty.data"] atomically:YES];
  10. assert([repo addFileToIndex:@"empty.data" error:NULL]);

  11. // Check index status
  12. GCDiff* diff = [repo diffRepositoryIndexWithHEAD:nil options:0 maxInterHunkLines:0 maxContextLines:0 error:NULL];
  13. assert(diff.deltas.count == 1);
  14. NSLog(@"%@", diff);

  15. // Create a commit
  16. GCCommit* newCommit = [repo createCommitFromHEADWithMessage:@"Added file" error:NULL];
  17. assert(newCommit);
  18. NSLog(@"%@", newCommit);

  19. // Restore repo to saved snapshot before topic branch and commit were created
  20. BOOL success = [repo restoreSnapshot:snapshot withOptions:kGCSnapshotOption_IncludeAll reflogMessage:@"Rolled back" didUpdateReferences:NULL error:NULL];
  21. assert(success);

  22. // Make sure topic branch is gone
  23. assert([repo findLocalBranchWithName:@"temp" error:NULL] == nil);

  24. // Update workdir and index to match HEAD
  25. assert([repo resetToHEAD:kGCResetMode_Hard error:NULL]);
  26. ```

Complete Example #1: GitDown


GitDown is a very basic app that prompts the user for a repo and displays an interactive and live-updating list of its stashes (all with ~20 lines of code in -[AppDelegate applicationDidFinishLaunching:] ):

Through GitUpKit, this basic app also gets for free unlimited undo/redo, unified and side-by-side diffs, text selection and copy, keyboard shortcuts, etc...

This source code also demonstrates how to use some other GitUpKit view controllers as well as building a customized one.

Complete Example #2: GitDiff


GitDiff demonstrates how to create a view controller that displays a live updating diff between HEAD and the workdir à la git diff HEAD :

Complete Example #3: GitY


GitY is a GitX clone built using GitUpKit and less than 200 lines of code:

Complete Example #4: iGit


iGit is a test iOS app that simply uses GitUpKit to clone a GitHub repo and perform a commit.

Contributing


See CONTRIBUTING.md.

Credits


@swisspol : concept and code
@wwayneee : UI design
@jayeb : website

Also a big thanks to the fine libgit2 contributors without whom GitUp would have never existed!

License


GitUp is copyright 2015-2018 Pierre-Olivier Latour and available under GPL v3 license. See the LICENSE file in the project for more information.

IMPORTANT:GitUp includes some other open-source projects and such projects remain under their own license.
Last Updated: 2023-09-03 19:17:54