├── .clang-format ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Assets └── Icons │ └── AppIcon.svg ├── CONTRIBUTING.md ├── Examples ├── GitDiff │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── GitDiff.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GitDiff.xcscheme │ ├── Info.plist │ └── main.m ├── GitDown │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── GitDown.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GitDown.xcscheme │ ├── Info.plist │ └── main.m ├── GitY │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── Document.xib │ │ └── MainMenu.xib │ ├── CommitViewTemplate.png │ ├── Document.h │ ├── Document.m │ ├── DocumentController.h │ ├── DocumentController.m │ ├── GitY.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GitY.xcscheme │ ├── HistoryViewTemplate.png │ ├── Info.plist │ └── main.m └── iGit │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── iGit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── iGit.xcscheme │ └── main.m ├── GitUp ├── Application │ ├── AboutWindowController.h │ ├── AboutWindowController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Application.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Contents.json │ │ ├── arrow.down.right.and.arrow.up.left.imageset │ │ │ ├── Contents.json │ │ │ └── arrow.down.forward.and.arrow.up.backward.pdf │ │ ├── chevron.down.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_nav_down.png │ │ │ └── icon_nav_down@2x.png │ │ ├── chevron.up.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_nav_up.png │ │ │ └── icon_nav_up@2x.png │ │ ├── circle.2.line.diagonal.symbolset │ │ │ ├── Contents.json │ │ │ └── circle.2.line.diagonal.svg │ │ ├── clock.arrow.circlepath.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_nav_snapshot.png │ │ │ └── icon_nav_snapshot@2x.png │ │ ├── gearshape.imageset │ │ │ ├── Advanced.png │ │ │ ├── Advanced@2x.png │ │ │ └── Contents.json │ │ ├── icon_action_fetch.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_action_fetch.png │ │ │ └── icon_action_fetch@2x.png │ │ ├── icon_action_fetch_new.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_action_fetch_new.png │ │ │ ├── icon_action_fetch_new@2x.png │ │ │ ├── icon_action_fetch_new_light.png │ │ │ └── icon_action_fetch_new_light@2x.png │ │ ├── icon_action_push.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_action_push.png │ │ │ └── icon_action_push@2x.png │ │ ├── icon_forum.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_forum.png │ │ │ └── icon_forum@2x.png │ │ ├── icon_nav_map.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_nav_map.png │ │ │ └── icon_nav_map@2x.png │ │ ├── icon_twitter.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_twitter.png │ │ │ └── icon_twitter@2x.png │ │ ├── line.horizontal.3.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_nav_stash.png │ │ │ └── icon_nav_stash@2x.png │ │ ├── square.and.pencil.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_nav_commit.png │ │ │ └── icon_nav_commit@2x.png │ │ └── switch.2.imageset │ │ │ ├── Contents.json │ │ │ ├── General.png │ │ │ └── General@2x.png │ ├── AuthenticationWindowController.h │ ├── AuthenticationWindowController.m │ ├── Base.lproj │ │ ├── AboutWindowController.xib │ │ ├── AuthenticationWindowController.xib │ │ ├── CloneWindowController.xib │ │ ├── Document.xib │ │ ├── MainMenu.xib │ │ ├── PreferencesWindowController.xib │ │ └── WelcomeWindowController.xib │ ├── CloneWindowController.h │ ├── CloneWindowController.m │ ├── Common.h │ ├── Document.h │ ├── Document.m │ ├── DocumentController.h │ ├── DocumentController.m │ ├── FontSizeTransformer.h │ ├── FontSizeTransformer.m │ ├── GitUp.entitlements │ ├── Info.plist │ ├── KeychainAccessor.h │ ├── KeychainAccessor.m │ ├── PreferencesWindowController.h │ ├── PreferencesWindowController.m │ ├── ServicesProvider.h │ ├── ServicesProvider.m │ ├── ToolbarItemWrapperView.h │ ├── ToolbarItemWrapperView.m │ ├── WelcomeWindowController.h │ ├── WelcomeWindowController.m │ ├── WindowController.h │ ├── WindowController.m │ ├── en.lproj │ │ ├── Help.plist │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── main.m ├── Export-Options.plist ├── GitUp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Application.xcscheme │ │ └── Tool.xcscheme ├── SparkleAppcast.xml ├── Tool │ ├── install.sh │ └── main.m └── ToolProtocol.h ├── GitUpKit ├── Components │ ├── Base.lproj │ │ ├── GICommitListViewController.xib │ │ ├── GIDiffContentsViewController.xib │ │ ├── GIDiffFilesViewController.xib │ │ ├── GISnapshotListViewController.xib │ │ └── GIUnifiedReflogViewController.xib │ ├── Components.xcassets │ │ ├── Contents.json │ │ ├── diff │ │ │ ├── Contents.json │ │ │ ├── added_background.colorset │ │ │ │ └── Contents.json │ │ │ ├── conflict_background.colorset │ │ │ │ └── Contents.json │ │ │ ├── deleted_background.colorset │ │ │ │ └── Contents.json │ │ │ ├── modified_background.colorset │ │ │ │ └── Contents.json │ │ │ ├── renamed_background.colorset │ │ │ │ └── Contents.json │ │ │ └── untracked_background.colorset │ │ │ │ └── Contents.json │ │ ├── icon_file_a.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_file_a.png │ │ │ └── icon_file_a@2x.png │ │ ├── icon_file_conflict.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_file_conflict.png │ │ │ └── icon_file_conflict@2x.png │ │ ├── icon_file_d.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_file_d.png │ │ │ └── icon_file_d@2x.png │ │ ├── icon_file_m.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_file_m.png │ │ │ └── icon_file_m@2x.png │ │ ├── icon_file_r.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_file_r.png │ │ │ └── icon_file_r@2x.png │ │ ├── icon_file_u.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_file_u.png │ │ │ └── icon_file_u@2x.png │ │ └── icon_gear.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_gear.png │ │ │ └── icon_gear@2x.png │ ├── GICommitListViewController.h │ ├── GICommitListViewController.m │ ├── GIDiffContentsViewController.h │ ├── GIDiffContentsViewController.m │ ├── GIDiffFilesViewController.h │ ├── GIDiffFilesViewController.m │ ├── GISnapshotListViewController.h │ ├── GISnapshotListViewController.m │ ├── GIUnifiedReflogViewController.h │ ├── GIUnifiedReflogViewController.m │ └── en.lproj │ │ └── Reasons.strings ├── Core │ ├── GCBranch-Tests.m │ ├── GCBranch.h │ ├── GCBranch.m │ ├── GCCommit-Tests.m │ ├── GCCommit.h │ ├── GCCommit.m │ ├── GCCommitDatabase-Tests.m │ ├── GCCommitDatabase.h │ ├── GCCommitDatabase.m │ ├── GCCore.h │ ├── GCDiff-Tests.m │ ├── GCDiff.h │ ├── GCDiff.m │ ├── GCError.h │ ├── GCFoundation-Tests.m │ ├── GCFoundation.h │ ├── GCFoundation.m │ ├── GCFunctions.h │ ├── GCFunctions.m │ ├── GCHistory-Tests.m │ ├── GCHistory.h │ ├── GCHistory.m │ ├── GCIndex.h │ ├── GCIndex.m │ ├── GCLiveRepository+Conflicts.h │ ├── GCLiveRepository+Conflicts.m │ ├── GCLiveRepository-Tests.m │ ├── GCLiveRepository.h │ ├── GCLiveRepository.m │ ├── GCMacros.h │ ├── GCObject.h │ ├── GCObject.m │ ├── GCOrderedSet-Tests.m │ ├── GCOrderedSet.h │ ├── GCOrderedSet.m │ ├── GCPrivate.h │ ├── GCPrivate.m │ ├── GCReference.h │ ├── GCReference.m │ ├── GCReferenceTransform.h │ ├── GCReferenceTransform.m │ ├── GCReflogMessages.h │ ├── GCRemote-Tests.m │ ├── GCRemote.h │ ├── GCRemote.m │ ├── GCRepository+Bare-Tests.m │ ├── GCRepository+Bare.h │ ├── GCRepository+Bare.m │ ├── GCRepository+Config-Tests.m │ ├── GCRepository+Config.h │ ├── GCRepository+Config.m │ ├── GCRepository+HEAD-Tests.m │ ├── GCRepository+HEAD.h │ ├── GCRepository+HEAD.m │ ├── GCRepository+Mock-Tests.m │ ├── GCRepository+Mock.h │ ├── GCRepository+Mock.m │ ├── GCRepository+Reflog-Tests.m │ ├── GCRepository+Reflog.h │ ├── GCRepository+Reflog.m │ ├── GCRepository+Reset-Tests.m │ ├── GCRepository+Reset.h │ ├── GCRepository+Reset.m │ ├── GCRepository+Status-Tests.m │ ├── GCRepository+Status.h │ ├── GCRepository+Status.m │ ├── GCRepository-Tests.m │ ├── GCRepository.h │ ├── GCRepository.m │ ├── GCSQLiteRepository-Tests.m │ ├── GCSQLiteRepository.h │ ├── GCSQLiteRepository.m │ ├── GCSnapshot-Tests.m │ ├── GCSnapshot.h │ ├── GCSnapshot.m │ ├── GCStash-Tests.m │ ├── GCStash.h │ ├── GCStash.m │ ├── GCSubmodule-Tests.m │ ├── GCSubmodule.h │ ├── GCSubmodule.m │ ├── GCTag-Tests.m │ ├── GCTag.h │ ├── GCTag.m │ ├── GCTestCase.h │ └── GCTestCase.m ├── Extensions │ ├── GCHistory+Rewrite-Tests.m │ ├── GCHistory+Rewrite.h │ ├── GCHistory+Rewrite.m │ ├── GCLiveRepository+Utilities.h │ ├── GCLiveRepository+Utilities.m │ ├── GCRepository+Index-Tests.m │ ├── GCRepository+Index.h │ ├── GCRepository+Index.m │ ├── GCRepository+Utilities-Tests.m │ ├── GCRepository+Utilities.h │ └── GCRepository+Utilities.m ├── GitUpKit.h ├── GitUpKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── GitUpKit (iOS).xcscheme │ │ └── GitUpKit (macOS).xcscheme ├── Info.plist ├── Interface │ ├── GIBranch.h │ ├── GIBranch.m │ ├── GIConstants.h │ ├── GIDiffView.h │ ├── GIDiffView.m │ ├── GIFunctions-Tests.m │ ├── GIFunctions.h │ ├── GIFunctions.m │ ├── GIGraph-Tests.m │ ├── GIGraph-Tests │ │ ├── simple.txt │ │ ├── skip_remote_branches_1.txt │ │ ├── skip_remote_branches_2.txt │ │ ├── skip_remote_branches_3.txt │ │ └── virtual_tip.txt │ ├── GIGraph.h │ ├── GIGraph.m │ ├── GIGraphView.h │ ├── GIGraphView.m │ ├── GIImageDiffView.h │ ├── GIImageDiffView.m │ ├── GIInterface.h │ ├── GILayer.h │ ├── GILayer.m │ ├── GILine.h │ ├── GILine.m │ ├── GINode.h │ ├── GINode.m │ ├── GIPrivate.h │ ├── GIPrivate.m │ ├── GISplitDiffView.h │ ├── GISplitDiffView.m │ ├── GIUnifiedDiffView.h │ ├── GIUnifiedDiffView.m │ └── Interface.xcassets │ │ ├── Contents.json │ │ ├── branch │ │ ├── 1.colorset │ │ │ └── Contents.json │ │ ├── 2.colorset │ │ │ └── Contents.json │ │ ├── 3.colorset │ │ │ └── Contents.json │ │ ├── 4.colorset │ │ │ └── Contents.json │ │ ├── 5.colorset │ │ │ └── Contents.json │ │ ├── 6.colorset │ │ │ └── Contents.json │ │ ├── 7.colorset │ │ │ └── Contents.json │ │ ├── 8.colorset │ │ │ └── Contents.json │ │ └── Contents.json │ │ └── diff │ │ ├── Contents.json │ │ ├── added_text_background.colorset │ │ └── Contents.json │ │ ├── added_text_highlight.colorset │ │ └── Contents.json │ │ ├── deleted_text_background.colorset │ │ └── Contents.json │ │ ├── deleted_text_highlight.colorset │ │ └── Contents.json │ │ └── separator_background.colorset │ │ └── Contents.json ├── Logging │ └── XLFacilityMacros.h ├── Third-Party │ ├── Package.swift │ ├── common.sh │ ├── libcrypto.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ └── libcrypto.a │ │ ├── ios-arm64_x86_64-simulator │ │ │ └── libcrypto.a │ │ └── macos-arm64_x86_64 │ │ │ └── libcrypto.a │ ├── libgit2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── libgit2.xcscheme │ ├── libsqlite3.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ ├── Headers │ │ │ │ ├── sqlite3.h │ │ │ │ └── sqlite3ext.h │ │ │ └── libsqlite3.a │ │ ├── ios-arm64_x86_64-simulator │ │ │ ├── Headers │ │ │ │ ├── sqlite3.h │ │ │ │ └── sqlite3ext.h │ │ │ └── libsqlite3.a │ │ └── macos-arm64_x86_64 │ │ │ ├── Headers │ │ │ ├── sqlite3.h │ │ │ └── sqlite3ext.h │ │ │ └── libsqlite3.a │ ├── libssh2.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ ├── Headers │ │ │ │ ├── libssh2.h │ │ │ │ ├── libssh2_publickey.h │ │ │ │ └── libssh2_sftp.h │ │ │ └── libssh2.a │ │ ├── ios-arm64_x86_64-simulator │ │ │ ├── Headers │ │ │ │ ├── libssh2.h │ │ │ │ ├── libssh2_publickey.h │ │ │ │ └── libssh2_sftp.h │ │ │ └── libssh2.a │ │ └── macos-arm64_x86_64 │ │ │ ├── Headers │ │ │ ├── libssh2.h │ │ │ ├── libssh2_publickey.h │ │ │ └── libssh2_sftp.h │ │ │ └── libssh2.a │ ├── libssl.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ ├── Headers │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1err.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── async.h │ │ │ │ │ ├── asyncerr.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bioerr.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bnerr.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── buffererr.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objectserr.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsperr.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── rand_drbg.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ └── libssl.a │ │ ├── ios-arm64_x86_64-simulator │ │ │ ├── Headers │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1err.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── async.h │ │ │ │ │ ├── asyncerr.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bioerr.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bnerr.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── buffererr.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objectserr.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsperr.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── rand_drbg.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ └── libssl.a │ │ └── macos-arm64_x86_64 │ │ │ ├── Headers │ │ │ └── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── hmac.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── rand.h │ │ │ │ ├── rand_drbg.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ └── libssl.a │ ├── rebuild-libsqlite3.sh │ ├── rebuild-libssh2.sh │ └── rebuild-libssl.sh ├── Utilities │ ├── GIAppKit.h │ ├── GIAppKit.m │ ├── GIColorView.h │ ├── GIColorView.m │ ├── GICustomToolbarItem.h │ ├── GICustomToolbarItem.m │ ├── GILaunchServicesLocator.h │ ├── GILaunchServicesLocator.m │ ├── GILinkButton.h │ ├── GILinkButton.m │ ├── GIModalView.h │ ├── GIModalView.m │ ├── GIViewController+Utilities.h │ ├── GIViewController+Utilities.m │ ├── GIViewController.h │ ├── GIViewController.m │ ├── GIWindowController.h │ ├── GIWindowController.m │ ├── GIWindowController.xib │ ├── NSBundle+GitUpKit.h │ ├── NSBundle+GitUpKit.m │ ├── NSColor+GINamedColors.h │ ├── NSColor+GINamedColors.m │ └── Utilities.xcassets │ │ ├── Contents.json │ │ ├── icon_alert_caution.imageset │ │ ├── Contents.json │ │ ├── icon_alert_caution.png │ │ └── icon_alert_caution@2x.png │ │ ├── icon_alert_note.imageset │ │ ├── Contents.json │ │ ├── icon_alert_note.png │ │ └── icon_alert_note@2x.png │ │ ├── icon_alert_stop.imageset │ │ ├── Contents.json │ │ ├── icon_alert_stop.png │ │ └── icon_alert_stop@2x.png │ │ └── separator.colorset │ │ └── Contents.json ├── Views │ ├── Base.lproj │ │ ├── GIAdvancedCommitViewController.xib │ │ ├── GICommitRewriterViewController.xib │ │ ├── GICommitSplitterViewController.xib │ │ ├── GIConfigViewController.xib │ │ ├── GIConflictResolverViewController.xib │ │ ├── GIDiffViewController.xib │ │ ├── GIMapViewController.xib │ │ ├── GIQuickViewController.xib │ │ ├── GISimpleCommitViewController.xib │ │ └── GIStashListViewController.xib │ ├── GIAdvancedCommitViewController.h │ ├── GIAdvancedCommitViewController.m │ ├── GICommitRewriterViewController.h │ ├── GICommitRewriterViewController.m │ ├── GICommitSplitterViewController.h │ ├── GICommitSplitterViewController.m │ ├── GICommitViewController.h │ ├── GICommitViewController.m │ ├── GIConfigViewController.h │ ├── GIConfigViewController.m │ ├── GIConflictResolverViewController.h │ ├── GIConflictResolverViewController.m │ ├── GIDiffViewController.h │ ├── GIDiffViewController.m │ ├── GIMapViewController+Operations.h │ ├── GIMapViewController+Operations.m │ ├── GIMapViewController.h │ ├── GIMapViewController.m │ ├── GIQuickViewController.h │ ├── GIQuickViewController.m │ ├── GIRemappingExplanationPopover.h │ ├── GIRemappingExplanationPopover.m │ ├── GIRemappingExplanationViewController.xib │ ├── GISimpleCommitViewController.h │ ├── GISimpleCommitViewController.m │ ├── GIStashListViewController.h │ ├── GIStashListViewController.m │ ├── Views.xcassets │ │ ├── Contents.json │ │ ├── background_pattern.imageset │ │ │ ├── Contents.json │ │ │ ├── background_pattern-dark.png │ │ │ ├── background_pattern-dark@2x.png │ │ │ ├── background_pattern.png │ │ │ └── background_pattern@2x.png │ │ ├── commit │ │ │ ├── Contents.json │ │ │ └── header_background.colorset │ │ │ │ └── Contents.json │ │ ├── config │ │ │ ├── Contents.json │ │ │ ├── conflict_background.colorset │ │ │ │ └── Contents.json │ │ │ ├── global_background.colorset │ │ │ │ └── Contents.json │ │ │ └── highlight_background.colorset │ │ │ │ └── Contents.json │ │ ├── icon_author.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_author.png │ │ │ └── icon_author@2x.png │ │ └── icon_committer.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_committer.png │ │ │ └── icon_committer@2x.png │ └── en.lproj │ │ └── GIConfigViewController-Help.txt └── build-release.sh ├── LICENSE ├── README.md ├── UPDATING-LIBGIT2.md ├── Xcode-Configurations ├── Base.xcconfig ├── Debug.xcconfig └── Release.xcconfig ├── appcasts ├── continuous │ └── appcast.xml └── stable │ └── appcast.xml ├── continuous-build.sh ├── format-source.sh ├── stable-build.sh └── travis-build.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/Icons/AppIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Assets/Icons/AppIcon.svg -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/GitDiff/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/AppDelegate.h -------------------------------------------------------------------------------- /Examples/GitDiff/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/AppDelegate.m -------------------------------------------------------------------------------- /Examples/GitDiff/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/GitDiff/GitDiff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/GitDiff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/GitDiff/GitDiff.xcodeproj/xcshareddata/xcschemes/GitDiff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/GitDiff.xcodeproj/xcshareddata/xcschemes/GitDiff.xcscheme -------------------------------------------------------------------------------- /Examples/GitDiff/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/Info.plist -------------------------------------------------------------------------------- /Examples/GitDiff/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDiff/main.m -------------------------------------------------------------------------------- /Examples/GitDown/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/AppDelegate.h -------------------------------------------------------------------------------- /Examples/GitDown/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/AppDelegate.m -------------------------------------------------------------------------------- /Examples/GitDown/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/GitDown/GitDown.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/GitDown.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/GitDown/GitDown.xcodeproj/xcshareddata/xcschemes/GitDown.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/GitDown.xcodeproj/xcshareddata/xcschemes/GitDown.xcscheme -------------------------------------------------------------------------------- /Examples/GitDown/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/Info.plist -------------------------------------------------------------------------------- /Examples/GitDown/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitDown/main.m -------------------------------------------------------------------------------- /Examples/GitY/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/AppDelegate.h -------------------------------------------------------------------------------- /Examples/GitY/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/AppDelegate.m -------------------------------------------------------------------------------- /Examples/GitY/Base.lproj/Document.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/Base.lproj/Document.xib -------------------------------------------------------------------------------- /Examples/GitY/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/GitY/CommitViewTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/CommitViewTemplate.png -------------------------------------------------------------------------------- /Examples/GitY/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/Document.h -------------------------------------------------------------------------------- /Examples/GitY/Document.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/Document.m -------------------------------------------------------------------------------- /Examples/GitY/DocumentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/DocumentController.h -------------------------------------------------------------------------------- /Examples/GitY/DocumentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/DocumentController.m -------------------------------------------------------------------------------- /Examples/GitY/GitY.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/GitY.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/GitY/GitY.xcodeproj/xcshareddata/xcschemes/GitY.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/GitY.xcodeproj/xcshareddata/xcschemes/GitY.xcscheme -------------------------------------------------------------------------------- /Examples/GitY/HistoryViewTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/HistoryViewTemplate.png -------------------------------------------------------------------------------- /Examples/GitY/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/Info.plist -------------------------------------------------------------------------------- /Examples/GitY/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/GitY/main.m -------------------------------------------------------------------------------- /Examples/iGit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/AppDelegate.h -------------------------------------------------------------------------------- /Examples/iGit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/AppDelegate.m -------------------------------------------------------------------------------- /Examples/iGit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/iGit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/iGit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/Info.plist -------------------------------------------------------------------------------- /Examples/iGit/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/ViewController.h -------------------------------------------------------------------------------- /Examples/iGit/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/ViewController.m -------------------------------------------------------------------------------- /Examples/iGit/iGit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/iGit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/iGit/iGit.xcodeproj/xcshareddata/xcschemes/iGit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/iGit.xcodeproj/xcshareddata/xcschemes/iGit.xcscheme -------------------------------------------------------------------------------- /Examples/iGit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Examples/iGit/main.m -------------------------------------------------------------------------------- /GitUp/Application/AboutWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/AboutWindowController.h -------------------------------------------------------------------------------- /GitUp/Application/AboutWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/AboutWindowController.m -------------------------------------------------------------------------------- /GitUp/Application/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/AppDelegate.h -------------------------------------------------------------------------------- /GitUp/Application/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/AppDelegate.m -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/chevron.down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/chevron.down.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/chevron.down.imageset/icon_nav_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/chevron.down.imageset/icon_nav_down.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/chevron.down.imageset/icon_nav_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/chevron.down.imageset/icon_nav_down@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/chevron.up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/chevron.up.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/chevron.up.imageset/icon_nav_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/chevron.up.imageset/icon_nav_up.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/chevron.up.imageset/icon_nav_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/chevron.up.imageset/icon_nav_up@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/circle.2.line.diagonal.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/circle.2.line.diagonal.symbolset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/clock.arrow.circlepath.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/clock.arrow.circlepath.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/gearshape.imageset/Advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/gearshape.imageset/Advanced.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/gearshape.imageset/Advanced@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/gearshape.imageset/Advanced@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/gearshape.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/gearshape.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_fetch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_fetch.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_fetch.imageset/icon_action_fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_fetch.imageset/icon_action_fetch.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_fetch.imageset/icon_action_fetch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_fetch.imageset/icon_action_fetch@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_fetch_new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_fetch_new.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_push.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_push.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_push.imageset/icon_action_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_push.imageset/icon_action_push.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_action_push.imageset/icon_action_push@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_action_push.imageset/icon_action_push@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_forum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_forum.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_forum.imageset/icon_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_forum.imageset/icon_forum.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_forum.imageset/icon_forum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_forum.imageset/icon_forum@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_nav_map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_nav_map.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_nav_map.imageset/icon_nav_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_nav_map.imageset/icon_nav_map.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_nav_map.imageset/icon_nav_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_nav_map.imageset/icon_nav_map@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_twitter.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_twitter.imageset/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_twitter.imageset/icon_twitter.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/icon_twitter.imageset/icon_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/icon_twitter.imageset/icon_twitter@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/line.horizontal.3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/line.horizontal.3.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/line.horizontal.3.imageset/icon_nav_stash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/line.horizontal.3.imageset/icon_nav_stash.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/line.horizontal.3.imageset/icon_nav_stash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/line.horizontal.3.imageset/icon_nav_stash@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/square.and.pencil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/square.and.pencil.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/square.and.pencil.imageset/icon_nav_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/square.and.pencil.imageset/icon_nav_commit.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/square.and.pencil.imageset/icon_nav_commit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/square.and.pencil.imageset/icon_nav_commit@2x.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/switch.2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/switch.2.imageset/Contents.json -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/switch.2.imageset/General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/switch.2.imageset/General.png -------------------------------------------------------------------------------- /GitUp/Application/Application.xcassets/switch.2.imageset/General@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Application.xcassets/switch.2.imageset/General@2x.png -------------------------------------------------------------------------------- /GitUp/Application/AuthenticationWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/AuthenticationWindowController.h -------------------------------------------------------------------------------- /GitUp/Application/AuthenticationWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/AuthenticationWindowController.m -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/AboutWindowController.xib -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/AuthenticationWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/AuthenticationWindowController.xib -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/CloneWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/CloneWindowController.xib -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/Document.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/Document.xib -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/PreferencesWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/PreferencesWindowController.xib -------------------------------------------------------------------------------- /GitUp/Application/Base.lproj/WelcomeWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Base.lproj/WelcomeWindowController.xib -------------------------------------------------------------------------------- /GitUp/Application/CloneWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/CloneWindowController.h -------------------------------------------------------------------------------- /GitUp/Application/CloneWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/CloneWindowController.m -------------------------------------------------------------------------------- /GitUp/Application/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Common.h -------------------------------------------------------------------------------- /GitUp/Application/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Document.h -------------------------------------------------------------------------------- /GitUp/Application/Document.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Document.m -------------------------------------------------------------------------------- /GitUp/Application/DocumentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/DocumentController.h -------------------------------------------------------------------------------- /GitUp/Application/DocumentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/DocumentController.m -------------------------------------------------------------------------------- /GitUp/Application/FontSizeTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/FontSizeTransformer.h -------------------------------------------------------------------------------- /GitUp/Application/FontSizeTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/FontSizeTransformer.m -------------------------------------------------------------------------------- /GitUp/Application/GitUp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/GitUp.entitlements -------------------------------------------------------------------------------- /GitUp/Application/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/Info.plist -------------------------------------------------------------------------------- /GitUp/Application/KeychainAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/KeychainAccessor.h -------------------------------------------------------------------------------- /GitUp/Application/KeychainAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/KeychainAccessor.m -------------------------------------------------------------------------------- /GitUp/Application/PreferencesWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/PreferencesWindowController.h -------------------------------------------------------------------------------- /GitUp/Application/PreferencesWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/PreferencesWindowController.m -------------------------------------------------------------------------------- /GitUp/Application/ServicesProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/ServicesProvider.h -------------------------------------------------------------------------------- /GitUp/Application/ServicesProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/ServicesProvider.m -------------------------------------------------------------------------------- /GitUp/Application/ToolbarItemWrapperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/ToolbarItemWrapperView.h -------------------------------------------------------------------------------- /GitUp/Application/ToolbarItemWrapperView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/ToolbarItemWrapperView.m -------------------------------------------------------------------------------- /GitUp/Application/WelcomeWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/WelcomeWindowController.h -------------------------------------------------------------------------------- /GitUp/Application/WelcomeWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/WelcomeWindowController.m -------------------------------------------------------------------------------- /GitUp/Application/WindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/WindowController.h -------------------------------------------------------------------------------- /GitUp/Application/WindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/WindowController.m -------------------------------------------------------------------------------- /GitUp/Application/en.lproj/Help.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/en.lproj/Help.plist -------------------------------------------------------------------------------- /GitUp/Application/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GitUp/Application/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GitUp/Application/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Application/main.m -------------------------------------------------------------------------------- /GitUp/Export-Options.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Export-Options.plist -------------------------------------------------------------------------------- /GitUp/GitUp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/GitUp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GitUp/GitUp.xcodeproj/xcshareddata/xcschemes/Application.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/GitUp.xcodeproj/xcshareddata/xcschemes/Application.xcscheme -------------------------------------------------------------------------------- /GitUp/GitUp.xcodeproj/xcshareddata/xcschemes/Tool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/GitUp.xcodeproj/xcshareddata/xcschemes/Tool.xcscheme -------------------------------------------------------------------------------- /GitUp/SparkleAppcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/SparkleAppcast.xml -------------------------------------------------------------------------------- /GitUp/Tool/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Tool/install.sh -------------------------------------------------------------------------------- /GitUp/Tool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/Tool/main.m -------------------------------------------------------------------------------- /GitUp/ToolProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUp/ToolProtocol.h -------------------------------------------------------------------------------- /GitUpKit/Components/Base.lproj/GICommitListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Base.lproj/GICommitListViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Components/Base.lproj/GIDiffContentsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Base.lproj/GIDiffContentsViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Components/Base.lproj/GIDiffFilesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Base.lproj/GIDiffFilesViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Components/Base.lproj/GISnapshotListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Base.lproj/GISnapshotListViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Components/Base.lproj/GIUnifiedReflogViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Base.lproj/GIUnifiedReflogViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/added_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/added_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/conflict_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/conflict_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/deleted_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/deleted_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/modified_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/modified_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/renamed_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/renamed_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/diff/untracked_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/diff/untracked_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_a.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_a.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_a.imageset/icon_file_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_a.imageset/icon_file_a.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_a.imageset/icon_file_a@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_a.imageset/icon_file_a@2x.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_conflict.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_conflict.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_conflict.imageset/icon_file_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_conflict.imageset/icon_file_conflict.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_d.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_d.imageset/icon_file_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_d.imageset/icon_file_d.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_d.imageset/icon_file_d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_d.imageset/icon_file_d@2x.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_m.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_m.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_m.imageset/icon_file_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_m.imageset/icon_file_m.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_m.imageset/icon_file_m@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_m.imageset/icon_file_m@2x.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_r.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_r.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_r.imageset/icon_file_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_r.imageset/icon_file_r.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_r.imageset/icon_file_r@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_r.imageset/icon_file_r@2x.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_u.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_u.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_u.imageset/icon_file_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_u.imageset/icon_file_u.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_file_u.imageset/icon_file_u@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_file_u.imageset/icon_file_u@2x.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_gear.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_gear.imageset/icon_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_gear.imageset/icon_gear.png -------------------------------------------------------------------------------- /GitUpKit/Components/Components.xcassets/icon_gear.imageset/icon_gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/Components.xcassets/icon_gear.imageset/icon_gear@2x.png -------------------------------------------------------------------------------- /GitUpKit/Components/GICommitListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GICommitListViewController.h -------------------------------------------------------------------------------- /GitUpKit/Components/GICommitListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GICommitListViewController.m -------------------------------------------------------------------------------- /GitUpKit/Components/GIDiffContentsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GIDiffContentsViewController.h -------------------------------------------------------------------------------- /GitUpKit/Components/GIDiffContentsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GIDiffContentsViewController.m -------------------------------------------------------------------------------- /GitUpKit/Components/GIDiffFilesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GIDiffFilesViewController.h -------------------------------------------------------------------------------- /GitUpKit/Components/GIDiffFilesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GIDiffFilesViewController.m -------------------------------------------------------------------------------- /GitUpKit/Components/GISnapshotListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GISnapshotListViewController.h -------------------------------------------------------------------------------- /GitUpKit/Components/GISnapshotListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GISnapshotListViewController.m -------------------------------------------------------------------------------- /GitUpKit/Components/GIUnifiedReflogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GIUnifiedReflogViewController.h -------------------------------------------------------------------------------- /GitUpKit/Components/GIUnifiedReflogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/GIUnifiedReflogViewController.m -------------------------------------------------------------------------------- /GitUpKit/Components/en.lproj/Reasons.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Components/en.lproj/Reasons.strings -------------------------------------------------------------------------------- /GitUpKit/Core/GCBranch-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCBranch-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCBranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCBranch.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCBranch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCBranch.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCCommit-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCommit-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCCommit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCommit.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCCommit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCommit.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCCommitDatabase-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCommitDatabase-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCCommitDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCommitDatabase.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCCommitDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCommitDatabase.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCCore.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCDiff-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCDiff-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCDiff.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCDiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCDiff.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCError.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCFoundation-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCFoundation-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCFoundation.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCFoundation.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCFunctions.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCFunctions.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCHistory-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCHistory-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCHistory.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCHistory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCHistory.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCIndex.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCIndex.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCLiveRepository+Conflicts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCLiveRepository+Conflicts.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCLiveRepository+Conflicts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCLiveRepository+Conflicts.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCLiveRepository-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCLiveRepository-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCLiveRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCLiveRepository.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCLiveRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCLiveRepository.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCMacros.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCObject.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCObject.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCOrderedSet-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCOrderedSet-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCOrderedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCOrderedSet.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCOrderedSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCOrderedSet.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCPrivate.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCPrivate.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCReference.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCReference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCReference.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCReferenceTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCReferenceTransform.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCReferenceTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCReferenceTransform.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCReflogMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCReflogMessages.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRemote-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRemote-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRemote.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRemote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRemote.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Bare-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Bare-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Bare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Bare.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Bare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Bare.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Config-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Config-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Config.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Config.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+HEAD-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+HEAD-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+HEAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+HEAD.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+HEAD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+HEAD.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Mock-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Mock-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Mock.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Mock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Mock.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Reflog-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Reflog-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Reflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Reflog.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Reflog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Reflog.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Reset-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Reset-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Reset.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Reset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Reset.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Status-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Status-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Status.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository+Status.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository+Status.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCRepository.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCSQLiteRepository-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSQLiteRepository-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCSQLiteRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSQLiteRepository.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCSQLiteRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSQLiteRepository.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCSnapshot-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSnapshot-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSnapshot.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSnapshot.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCStash-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCStash-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCStash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCStash.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCStash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCStash.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCSubmodule-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSubmodule-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCSubmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSubmodule.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCSubmodule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCSubmodule.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCTag-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCTag-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCTag.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCTag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCTag.m -------------------------------------------------------------------------------- /GitUpKit/Core/GCTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCTestCase.h -------------------------------------------------------------------------------- /GitUpKit/Core/GCTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Core/GCTestCase.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCHistory+Rewrite-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCHistory+Rewrite-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCHistory+Rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCHistory+Rewrite.h -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCHistory+Rewrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCHistory+Rewrite.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCLiveRepository+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCLiveRepository+Utilities.h -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCLiveRepository+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCLiveRepository+Utilities.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCRepository+Index-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCRepository+Index-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCRepository+Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCRepository+Index.h -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCRepository+Index.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCRepository+Index.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCRepository+Utilities-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCRepository+Utilities-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCRepository+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCRepository+Utilities.h -------------------------------------------------------------------------------- /GitUpKit/Extensions/GCRepository+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Extensions/GCRepository+Utilities.m -------------------------------------------------------------------------------- /GitUpKit/GitUpKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/GitUpKit.h -------------------------------------------------------------------------------- /GitUpKit/GitUpKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/GitUpKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GitUpKit/GitUpKit.xcodeproj/xcshareddata/xcschemes/GitUpKit (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/GitUpKit.xcodeproj/xcshareddata/xcschemes/GitUpKit (iOS).xcscheme -------------------------------------------------------------------------------- /GitUpKit/GitUpKit.xcodeproj/xcshareddata/xcschemes/GitUpKit (macOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/GitUpKit.xcodeproj/xcshareddata/xcschemes/GitUpKit (macOS).xcscheme -------------------------------------------------------------------------------- /GitUpKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Info.plist -------------------------------------------------------------------------------- /GitUpKit/Interface/GIBranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIBranch.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIBranch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIBranch.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIConstants.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIDiffView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIDiffView.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIDiffView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIDiffView.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIFunctions-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIFunctions-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIFunctions.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIFunctions.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph-Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph-Tests.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph-Tests/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph-Tests/simple.txt -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph-Tests/skip_remote_branches_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph-Tests/skip_remote_branches_1.txt -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph-Tests/skip_remote_branches_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph-Tests/skip_remote_branches_2.txt -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph-Tests/skip_remote_branches_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph-Tests/skip_remote_branches_3.txt -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph-Tests/virtual_tip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph-Tests/virtual_tip.txt -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraph.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraphView.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIGraphView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIGraphView.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIImageDiffView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIImageDiffView.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIImageDiffView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIImageDiffView.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIInterface.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GILayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GILayer.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GILayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GILayer.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GILine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GILine.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GILine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GILine.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GINode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GINode.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GINode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GINode.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIPrivate.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIPrivate.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GISplitDiffView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GISplitDiffView.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GISplitDiffView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GISplitDiffView.m -------------------------------------------------------------------------------- /GitUpKit/Interface/GIUnifiedDiffView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIUnifiedDiffView.h -------------------------------------------------------------------------------- /GitUpKit/Interface/GIUnifiedDiffView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/GIUnifiedDiffView.m -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/1.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/2.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/3.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/3.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/4.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/4.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/5.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/5.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/6.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/6.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/7.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/7.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/8.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/8.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/branch/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/branch/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/diff/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/diff/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/diff/added_text_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/diff/added_text_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/diff/added_text_highlight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/diff/added_text_highlight.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/diff/deleted_text_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/diff/deleted_text_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/diff/deleted_text_highlight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/diff/deleted_text_highlight.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Interface/Interface.xcassets/diff/separator_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Interface/Interface.xcassets/diff/separator_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Logging/XLFacilityMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Logging/XLFacilityMacros.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/Package.swift -------------------------------------------------------------------------------- /GitUpKit/Third-Party/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/common.sh -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libcrypto.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libcrypto.xcframework/Info.plist -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libcrypto.xcframework/ios-arm64/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libcrypto.xcframework/ios-arm64/libcrypto.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libcrypto.xcframework/ios-arm64_x86_64-simulator/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libcrypto.xcframework/ios-arm64_x86_64-simulator/libcrypto.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libcrypto.xcframework/macos-arm64_x86_64/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libcrypto.xcframework/macos-arm64_x86_64/libcrypto.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libgit2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libgit2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libgit2.xcodeproj/xcshareddata/xcschemes/libgit2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libgit2.xcodeproj/xcshareddata/xcschemes/libgit2.xcscheme -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/Info.plist -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64/Headers/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64/Headers/sqlite3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64/Headers/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64/Headers/sqlite3ext.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64/libsqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64/libsqlite3.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64_x86_64-simulator/Headers/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64_x86_64-simulator/Headers/sqlite3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64_x86_64-simulator/libsqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/ios-arm64_x86_64-simulator/libsqlite3.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/macos-arm64_x86_64/Headers/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/macos-arm64_x86_64/Headers/sqlite3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/macos-arm64_x86_64/Headers/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/macos-arm64_x86_64/Headers/sqlite3ext.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libsqlite3.xcframework/macos-arm64_x86_64/libsqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libsqlite3.xcframework/macos-arm64_x86_64/libsqlite3.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/Info.plist -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/Headers/libssh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/Headers/libssh2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/Headers/libssh2_publickey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/Headers/libssh2_publickey.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/Headers/libssh2_sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/Headers/libssh2_sftp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64/libssh2.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64_x86_64-simulator/Headers/libssh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64_x86_64-simulator/Headers/libssh2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64_x86_64-simulator/Headers/libssh2_sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64_x86_64-simulator/Headers/libssh2_sftp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/ios-arm64_x86_64-simulator/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/ios-arm64_x86_64-simulator/libssh2.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/Headers/libssh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/Headers/libssh2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/Headers/libssh2_publickey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/Headers/libssh2_publickey.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/Headers/libssh2_sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/Headers/libssh2_sftp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssh2.xcframework/macos-arm64_x86_64/libssh2.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/Info.plist -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/aes.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1_mac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asn1t.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/async.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/asyncerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bio.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bioerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/blowfish.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bn.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/bnerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/buffer.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/buffererr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/camellia.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cast.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cmac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cms.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cmserr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/comp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/comperr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/conf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/conf_api.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/conferr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/crypto.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cryptoerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ct.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/cterr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/des.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dh.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dherr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dsaerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/dtls1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/e_os2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ebcdic.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ec.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ecdh.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ecdsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ecerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/engine.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/engineerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/evp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/evperr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/hmac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/idea.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/kdf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/kdferr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/lhash.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/md2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/md4.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/md5.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/mdc2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/modes.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/obj_mac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/objects.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/objectserr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ocsp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ocsperr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/opensslconf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/opensslv.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ossl_typ.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pem.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pem2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pemerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs12.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs12err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs7.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/pkcs7err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rand.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rand_drbg.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/randerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rc2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rc4.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rc5.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ripemd.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/rsaerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/safestack.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/seed.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/sha.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/srp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/srtp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ssl.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ssl2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ssl3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/sslerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/stack.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/store.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/storeerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/symhacks.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/tls1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ts.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/tserr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/txt_db.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/ui.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/uierr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/whrlpool.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509_vfy.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509v3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/Headers/openssl/x509v3err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64/libssl.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/aes.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/asn1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/asn1t.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/async.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/bio.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/bn.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/bnerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cast.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cmac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cms.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/comp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/conf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ct.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/cterr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/des.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dh.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dherr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/dtls1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/e_os2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ec.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdh.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/evp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/hmac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/idea.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/kdf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/lhash.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/md2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/md4.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/md5.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/mdc2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/modes.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ocsp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pem.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pem2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pkcs7.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rand.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rc2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rc4.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rc5.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/rsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/seed.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/sha.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/srp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/srtp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ssl.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ssl2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ts.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ui.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/ios-arm64_x86_64-simulator/libssl.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/aes.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1_mac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asn1t.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/async.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/asyncerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bio.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bioerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/blowfish.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bn.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/bnerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/buffer.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/buffererr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/camellia.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cast.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cmac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cms.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cmserr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/comp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/comperr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/conf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/conf_api.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/conferr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/crypto.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cryptoerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ct.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/cterr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/des.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dh.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dherr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dsaerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/dtls1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/e_os2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ebcdic.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ec.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ecdh.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ecdsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ecerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/engine.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/engineerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/evp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/evperr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/hmac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/idea.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/kdf.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/kdferr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/lhash.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/md2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/md4.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/md5.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/mdc2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/modes.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/obj_mac.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/objects.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/objectserr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ocsp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ocsperr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/opensslv.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ossl_typ.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pem.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pem2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pemerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs12.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs12err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs7.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/pkcs7err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rand.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rand_drbg.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/randerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rc2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rc4.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rc5.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ripemd.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rsa.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/rsaerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/safestack.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/seed.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/sha.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/srp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/srtp.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ssl.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ssl2.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ssl3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/sslerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/stack.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/store.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/storeerr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/symhacks.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/tls1.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ts.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/tserr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/txt_db.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/ui.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/uierr.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/whrlpool.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509_vfy.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509v3.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/Headers/openssl/x509v3err.h -------------------------------------------------------------------------------- /GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/libssl.xcframework/macos-arm64_x86_64/libssl.a -------------------------------------------------------------------------------- /GitUpKit/Third-Party/rebuild-libsqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/rebuild-libsqlite3.sh -------------------------------------------------------------------------------- /GitUpKit/Third-Party/rebuild-libssh2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/rebuild-libssh2.sh -------------------------------------------------------------------------------- /GitUpKit/Third-Party/rebuild-libssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Third-Party/rebuild-libssl.sh -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIAppKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIAppKit.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIAppKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIAppKit.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIColorView.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIColorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIColorView.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GICustomToolbarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GICustomToolbarItem.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GICustomToolbarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GICustomToolbarItem.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GILaunchServicesLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GILaunchServicesLocator.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GILaunchServicesLocator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GILaunchServicesLocator.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GILinkButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GILinkButton.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GILinkButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GILinkButton.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIModalView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIModalView.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIModalView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIModalView.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIViewController+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIViewController+Utilities.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIViewController+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIViewController+Utilities.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIViewController.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIViewController.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIWindowController.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIWindowController.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/GIWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/GIWindowController.xib -------------------------------------------------------------------------------- /GitUpKit/Utilities/NSBundle+GitUpKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/NSBundle+GitUpKit.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/NSBundle+GitUpKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/NSBundle+GitUpKit.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/NSColor+GINamedColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/NSColor+GINamedColors.h -------------------------------------------------------------------------------- /GitUpKit/Utilities/NSColor+GINamedColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/NSColor+GINamedColors.m -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_caution.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_caution.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_note.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_note.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_note.imageset/icon_alert_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_note.imageset/icon_alert_note.png -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_note.imageset/icon_alert_note@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_note.imageset/icon_alert_note@2x.png -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_stop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_stop.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_stop.imageset/icon_alert_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_stop.imageset/icon_alert_stop.png -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/icon_alert_stop.imageset/icon_alert_stop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/icon_alert_stop.imageset/icon_alert_stop@2x.png -------------------------------------------------------------------------------- /GitUpKit/Utilities/Utilities.xcassets/separator.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Utilities/Utilities.xcassets/separator.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIAdvancedCommitViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIAdvancedCommitViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GICommitRewriterViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GICommitRewriterViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GICommitSplitterViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GICommitSplitterViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIConfigViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIConfigViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIConflictResolverViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIConflictResolverViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIDiffViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIDiffViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIMapViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIMapViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIQuickViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIQuickViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GISimpleCommitViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GISimpleCommitViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/Base.lproj/GIStashListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Base.lproj/GIStashListViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/GIAdvancedCommitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIAdvancedCommitViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIAdvancedCommitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIAdvancedCommitViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GICommitRewriterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GICommitRewriterViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GICommitRewriterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GICommitRewriterViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GICommitSplitterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GICommitSplitterViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GICommitSplitterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GICommitSplitterViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GICommitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GICommitViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GICommitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GICommitViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIConfigViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIConfigViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIConfigViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIConfigViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIConflictResolverViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIConflictResolverViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIConflictResolverViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIConflictResolverViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIDiffViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIDiffViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIDiffViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIDiffViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIMapViewController+Operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIMapViewController+Operations.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIMapViewController+Operations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIMapViewController+Operations.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIMapViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIMapViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIQuickViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIQuickViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIQuickViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIQuickViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIRemappingExplanationPopover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIRemappingExplanationPopover.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIRemappingExplanationPopover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIRemappingExplanationPopover.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIRemappingExplanationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIRemappingExplanationViewController.xib -------------------------------------------------------------------------------- /GitUpKit/Views/GISimpleCommitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GISimpleCommitViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GISimpleCommitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GISimpleCommitViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/GIStashListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIStashListViewController.h -------------------------------------------------------------------------------- /GitUpKit/Views/GIStashListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/GIStashListViewController.m -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/background_pattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/background_pattern.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/background_pattern.imageset/background_pattern-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/background_pattern.imageset/background_pattern-dark.png -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/background_pattern.imageset/background_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/background_pattern.imageset/background_pattern.png -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/background_pattern.imageset/background_pattern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/background_pattern.imageset/background_pattern@2x.png -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/commit/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/commit/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/commit/header_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/commit/header_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/config/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/config/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/config/conflict_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/config/conflict_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/config/global_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/config/global_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/config/highlight_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/config/highlight_background.colorset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/icon_author.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/icon_author.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/icon_author.imageset/icon_author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/icon_author.imageset/icon_author.png -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/icon_author.imageset/icon_author@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/icon_author.imageset/icon_author@2x.png -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/icon_committer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/icon_committer.imageset/Contents.json -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/icon_committer.imageset/icon_committer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/icon_committer.imageset/icon_committer.png -------------------------------------------------------------------------------- /GitUpKit/Views/Views.xcassets/icon_committer.imageset/icon_committer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/Views.xcassets/icon_committer.imageset/icon_committer@2x.png -------------------------------------------------------------------------------- /GitUpKit/Views/en.lproj/GIConfigViewController-Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/Views/en.lproj/GIConfigViewController-Help.txt -------------------------------------------------------------------------------- /GitUpKit/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/GitUpKit/build-release.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/README.md -------------------------------------------------------------------------------- /UPDATING-LIBGIT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/UPDATING-LIBGIT2.md -------------------------------------------------------------------------------- /Xcode-Configurations/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Xcode-Configurations/Base.xcconfig -------------------------------------------------------------------------------- /Xcode-Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Xcode-Configurations/Debug.xcconfig -------------------------------------------------------------------------------- /Xcode-Configurations/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/Xcode-Configurations/Release.xcconfig -------------------------------------------------------------------------------- /appcasts/continuous/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/appcasts/continuous/appcast.xml -------------------------------------------------------------------------------- /appcasts/stable/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/appcasts/stable/appcast.xml -------------------------------------------------------------------------------- /continuous-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/continuous-build.sh -------------------------------------------------------------------------------- /format-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/format-source.sh -------------------------------------------------------------------------------- /stable-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/stable-build.sh -------------------------------------------------------------------------------- /travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-up/GitUp/HEAD/travis-build.sh --------------------------------------------------------------------------------