Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mhujer/enhanced-github
Chrome extension for better Github PullRequests
https://github.com/mhujer/enhanced-github
Last synced: about 1 month ago
JSON representation
Chrome extension for better Github PullRequests
- Host: GitHub
- URL: https://github.com/mhujer/enhanced-github
- Owner: mhujer
- Created: 2014-12-11T19:22:23.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-14T09:20:21.000Z (over 9 years ago)
- Last Synced: 2023-03-11T19:37:59.337Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 219 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Enhanced Github Chrome Extension
[@tomasfejfar](https://github.com/tomasfejfar/) has created following [Git aliases](https://git.wiki.kernel.org/index.php/Aliases#Introduction)
to allow easier Pull Requests review. And because copying the branch name from the PR is tricky, I created
a [Google Chrome extension](https://chrome.google.com/webstore/detail/enhanced-github/ajdnkfdmjijmemfjogiabpoeihamlbgo) that adds fancy buttons to the PR page. (And I have some stuff planned for the future.)![Enhanced Github Chrome Extension](preview.png)
### Fetch PR:
In case you just need to test the PR locally, add this alias:`fpr = "!f() { git stash; git fetch upstream pull/$1/head:review/$1; git checkout review/$1; git stash pop; }; f"`
And use it like this: `git fpr [pr-number]`
### Fetch Remote Branch
In case you want to fetch someone's branch and work on it, add this alias:`frb = "!f() { git stash; git fetch $1 $2:refs/remotes/$1/$2; git branch $1-$2 $1/$2 --track; git checkout $1-$2; git stash pop; }; f"`
And use it like this: `git frb [remote] [branch-name]`
## Versions
### 1.0.3 (2015-06-14)
- Fixed an issue when the extension prevented copying of text from github### 1.0.2 (2015-03-23)
- Update button classes according to the latest github changes### 1.0.1 (2014-12-16)
- fixed issue when buttons were multiplicated when switching tabs back and forth### 1.0.0 (2014-12-12)
- initial release## License
MIT