当前位置: 首页 > 软件库 > 手机/移动开发 > >

git-point

GitHub in your pocket 📱
授权协议 MIT License
开发语言 Java
所属分类 手机/移动开发
软件类型 开源软件
地区 不详
投 递 者 孔俊友
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

GitPoint


GitPoint

GitHub in your pocket. Built with React Native.

Download on the App Store Get it on Google Play

Table of Contents

Introduction

View repository and user information, control your notifications and even manage your issues and pull requests. Built with React Native, GitPoint is one of the most feature-rich unofficial GitHub clients that is 100% free.

Available for both iOS and Android.

Features

A few of the things you can do with GitPoint:

  • View user activity feed
  • Communicate on your issue and pull request conversations
  • Close or lock issues
  • Apply labels and assignees
  • Review and merge pull requests
  • Create new issues
  • Star, watch and fork repositories
  • Control your unread and participating notifications
  • Easily search for any user or repository

Feedback

Feel free to send us feedback on Twitter or file an issue. Feature requests are always welcome. If you wish to contribute, please take a quick look at the guidelines!

If there's anything you'd like to chat about, please feel free to join our Gitter chat!

Contributors

This project follows the all-contributors specification and is brought to you by these awesome contributors.

Build Process

  • Follow the React Native Guide for getting started building a project with native code. A Mac is required if you wish to develop for iOS.
  • Clone or download the repo
  • yarn to install dependencies
  • yarn run link to link react-native dependencies
  • yarn start:ios to start the packager and run the app in the iOS simulator (yarn start:ios:logger will boot the application with redux-logger)
  • yarn start:android to start the packager and run the app in the the Android device/emulator (yarn start:android:logger will boot the application with redux-logger)

Please take a look at the contributing guidelines for a detailed process on how to build your application as well as troubleshooting information.

Development Keys: The CLIENT_ID and CLIENT_SECRET in api/index.js are for development purposes and do not represent the actual application keys. Feel free to use them or use a new set of keys by creating an OAuth application of your own. Set the "Authorization callback URL" to gitpoint://welcome.

Backers

Thank you to all our backers! �� [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

Acknowledgments

Thanks to JetBrains for supporting us with a free Open Source License.

  • 本文翻译自:How do you use “git --bare init” repository? I need to create a central Git repository but I'm a little confused... 我需要创建一个中央Git存储库,但我有点困惑...... I have created a bare repository (in my git serve

  • compare Difference among git-branch, git-checkout and repo-start 1. $ repo start used to begin a new topic branch, starting from the revision specified in the manifest.xml file. All new branches are p

  • 概要 Git:git-branch的用法总结 博客 原帖收藏于IT老兵博客 前言 git-branch的用法。这个命令使用频度很高,还有一些没有搞明白,在这里总结梳理一下。 PS:之前的文章题目命名都用空格,以前一直不理解git的官网为什么多加一个“-”,现在明白了,为了用作文章名和题目比较方便,解了一个惑。 感觉之前的内容总结得还不是很到位,每次在这个地方遇到问题时,还是应该进来再看看,再看看官

  • 名称 git-fetch  - 从另一个存储库下载对象和引用 概要 git fetch [<options>] [<repository> [<refspec>…​]] git fetch [<options>] <group> git fetch --multiple [<options>] [(<repository> | <group>)…​] git fetch --all [<optio

  • 名称 git-push - 更新远程引用以及关联的对象 概要 git push [--all | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=<git-receive-pack>] [--repo=<repository>] [-f | --force] [-d | --del

  • 在Mac os环境下,使用SourceTree向Github push提交代码时,出现以下提示: POST git-receive-pack (chunked) google到相同问题:stackoverflow I found that the problem may be files that are large. I had one update that would not push ev

  • 本文翻译自:git - remote add origin vs remote set-url origin I create a new repository: 我创建了一个新的存储库: git init echo "# MESSAGE" >> README.md git add README.md git commit -m "first commit" Then I want to pus

  • 名称NAME git-switch - 切换分支 概要SYNOPSIS git switch [<options>] [--no-guess] <branch> git switch [<options>] --detach [<start-point>] git switch [<options>] (-c|-C) <new-branch> [<start-point>] git switch

  • NAME git-remote - Manage set of tracked repositories SYNOPSIS git remote [-v | --verbose] git remote add [-t <branch>] [-m <master>] [-f] [--[no-]tags] [--mirror=<fetch|push>] <name> <url> git remote

 相关资料
  • 创建一个新文件 ~/.gitignore ,并将以下内容添加进去,这样全部 git 仓库将会忽略以下内容所提及的文件。 # Folder view configuration files .DS_Store Desktop.ini # Thumbnail cache files ._* Thumbs.db # Files that might appear on external disks .S

  • 功能分支(feature branches)、发布分支(release branches)、主干(master)、开发分支(develop)、紧急修复分支(hotfixes)和标签(tag)。 Git Flow 太复杂 Git Flow 违背了分支的“短命”原则:在使用 Git 时,在同一个分支上开发代码的人越多,出现合并冲突的几率就越高。在使用 Git Flow 后,冲突几率会变得更高,因为还有

  • 规范建设 commit message格式 <type>(<scope>): <subject> type(必须) 用于说明git commit的类别,只允许使用下面的标识。 feat:新功能(feature)。 fix/to:修复bug,可以是QA发现的BUG,也可以是研发自己发现的BUG。 fix:产生diff并自动修复此问题。适合于一次提交直接修复问题 to:只产生diff不自动修复此问题

  • Git

    集中式与分布式 中心服务器 工作流 分支实现 冲突 Fast forward 储藏(Stashing) SSH 传输设置 .gitignore 文件 Git 命令一览 参考资料 集中式与分布式 Git 属于分布式版本控制系统,而 SVN 属于集中式。 集中式版本控制只有中心服务器拥有一份代码,而分布式版本控制每个人的电脑上就有一份完整的代码。 集中式版本控制有安全性问题,当中心服务器挂了所有人都没

  • Git

    作为一名开发者怎么可能没有 Git 呢? 我们马上就来安装: $ brew install git 好的,现在我们来测试一下 git 是否安装完好: $ git --version 运行 $ which git 将会输出 /usr/local/bin/git. 接着,我们将定义你的 Git 帐号(与你在 GitHub 使用的用户名和邮箱一致) $ git config --global user.

  • git

    Name git - 迟钝的内容跟踪器 概要 git [--version] [--help] [-C <path>] [-c <name>=<value>] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p|--paginate|--no-pager] [--no-replace-objects]

  • git

    Overview 始终没有很好的掌握Git, 这又是Stage又是Stack的,每次冲突都要找同事来帮忙解决。 Tools 貌似SmartGit最美观最好用,但License始终是个问题,只有非商业软件才能免费用。 SourceTree最大问题是不能按目录来查看文件和Log。 Commands remove tag remotelly git tag -d V4.0.0.GA git push o

  • Git

    Git 可以为项目做版本控制项目。 先搜索一下: yum search git 我看到一些 git2u 这个前缀的包,这应该是 ius 仓库提供的。 安装 Git: sudo yum install git2u -y 如果出现冲突的提示,是因为你的系统里已经包含了 Git,需要先删除掉系统里的 Git 才能继续安装。 再做一点简单的配置,告诉 Git 我们是谁: git config --g