Skip to content

Commit ad60377

Browse files
committedJul 28, 2019
- update readme
- change name for publish
1 parent c0239fa commit ad60377

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed
 

‎README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### disclaimer
2+
3+
This an up-to-date (2019-07-28) fork of the original git-control project.
4+
5+
I merely forked it from [gforge](https://github.com/gforge/atom-git-control) to publish it on atom's marketplace.
6+
17
# Atom git-control
28

39
## What
@@ -38,7 +44,11 @@ Pull requests, issues, feature requests are all welcome and encouraged via [http
3844

3945
Discussion and additional input is promoted here: [![Join the chat at https://gitter.im/jacogr/atom-git-control](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jacogr/atom-git-control?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4046

41-
## Maintainers
47+
## Original Creators
4248

4349
- [MarcelMue](https://github.com/MarcelMue)
4450
- [Jaco Greeff](https://github.com/jacogr)
51+
52+
## Last Maintainer
53+
54+
- [gforge](https://github.com/gforge/atom-git-control)

‎package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
2-
"name": "git-control",
2+
"name": "git-control-fork",
33
"main": "./lib/git-control",
44
"version": "0.9.0",
5-
"description": "Provides a GUI interface to manage all commonly-used git commands.",
5+
"description": "Provides a GUI interface to manage all commonly-used git commands. An up-to-date fork",
66
"keywords": [
77
"git-control",
88
"git-flow",
99
"github",
1010
"bitbucket",
11+
"gitlab",
1112
"git"
1213
],
1314
"activationCommands": {
1415
"atom-workspace": "git-control:toggle"
1516
},
1617
"repository": {
1718
"type": "git",
18-
"url": "git+https://github.com/jacogr/atom-git-control.git"
19+
"url": "git+https://github.com/lidorcg/atom-git-control.git"
1920
},
2021
"license": "MIT",
2122
"engines": {
@@ -26,12 +27,12 @@
2627
"q": "^1.0.1",
2728
"atom-space-pen-views": "^2.0.3"
2829
},
29-
"readme": "# Atom git-control\n\n## What\n\nProvides a GUI interface to manage all commonly-used git commands.\n\nThis is a first-release, while tested as part of creating this package, it has not been extensively used on much larger projects. In short: there are possibly still some issues remaining. At the same time, wanted to get the package out there and used.\n\n![Git](https://raw.githubusercontent.com/jacogr/atom-git-control/master/screenshots/git-01.png)\n\n## How\n\n- Checkout or switch to any available branch with a click on the local/remote branch\n- Select files to commit, either all or with an individual selection\n- Compare the current working tree changes to the selected local branch\n- Merge any other branch into the current active branch\n- Create branches, either by remote selection of local branching\n- Reset any file to its previous state with a checkout\n- All git commands are logged, the commands used and output is visible\n- Command available are activated based on working tree status\n- Automatically fetches remote status on activation\n\n##GitFlow\n\nFor git-flow commands to work, you need to [install git flow](https://github.com/petervanderdoes/gitflow/wiki)\n\nthen, on mac, do the following:\n\n```\n sudo ln -s /usr/local/bin/git-flow /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-hotfix /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-release /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-version /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-support /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-init /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-feature /usr/bin/\n\n sudo ln -s /usr/local/bin/gitflow-shFlags /usr/bin/\n\n sudo ln -s /usr/local/bin/gitflow-common /usr/bin/\n```\n\n## Where\n\nThe Atom package can be found on the Atom registry, [https://atom.io/packages/git-control](https://atom.io/packages/git-control).\n\nPull requests, issues, feature requests are all welcome and encouraged via [https://github.com/jacogr/atom-git-control](https://github.com/jacogr/atom-git-control).\n\nDiscussion and additional input is promoted here: [![Join the chat at https://gitter.im/jacogr/atom-git-control](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jacogr/atom-git-control?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n## Maintainers\n\n - [MarcelMue](https://github.com/MarcelMue)\n - [Jaco Greeff](https://github.com/jacogr)\n",
30+
"readme": "# Atom git-control\n\n## What\n\nProvides a GUI interface to manage all commonly-used git commands.\n\nThis is a first-release, while tested as part of creating this package, it has not been extensively used on much larger projects. In short: there are possibly still some issues remaining. At the same time, wanted to get the package out there and used.\n\n![Git](https://raw.githubusercontent.com/jacogr/atom-git-control/master/screenshots/git-01.png)\n\n## How\n\n- Checkout or switch to any available branch with a click on the local/remote branch\n- Select files to commit, either all or with an individual selection\n- Compare the current working tree changes to the selected local branch\n- Merge any other branch into the current active branch\n- Create branches, either by remote selection of local branching\n- Reset any file to its previous state with a checkout\n- All git commands are logged, the commands used and output is visible\n- Command available are activated based on working tree status\n- Automatically fetches remote status on activation\n\n##GitFlow\n\nFor git-flow commands to work, you need to [install git flow](https://github.com/petervanderdoes/gitflow/wiki)\n\nthen, on mac, do the following:\n\n```\n sudo ln -s /usr/local/bin/git-flow /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-hotfix /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-release /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-version /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-support /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-init /usr/bin/\n\n sudo ln -s /usr/local/bin/git-flow-feature /usr/bin/\n\n sudo ln -s /usr/local/bin/gitflow-shFlags /usr/bin/\n\n sudo ln -s /usr/local/bin/gitflow-common /usr/bin/\n```\n\n## Where\n\nThe Atom package can be found on the Atom registry, [https://atom.io/packages/git-control](https://atom.io/packages/git-control).\n\nPull requests, issues, feature requests are all welcome and encouraged via [https://github.com/lidorcg/atom-git-control](https://github.com/lidorcg/atom-git-control).\n\nDiscussion and additional input is promoted here: [![Join the chat at https://gitter.im/jacogr/atom-git-control](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jacogr/atom-git-control?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n## Maintainers\n\n - [MarcelMue](https://github.com/MarcelMue)\n - [Jaco Greeff](https://github.com/jacogr)\n",
3031
"readmeFilename": "README.md",
3132
"bugs": {
32-
"url": "https://github.com/jacogr/atom-git-control/issues"
33+
"url": "https://github.com/lidorcg/atom-git-control/issues"
3334
},
34-
"homepage": "https://github.com/jacogr/atom-git-control#readme",
35+
"homepage": "https://github.com/lidorcg/atom-git-control#readme",
3536
"_id": "git-control@0.4.0",
3637
"_shasum": "a97445475c58a35ba635d59f4682a4bf787c3e75",
3738
"_resolved": "file:../d-1151115-13025-mazxg1/package.tgz",

0 commit comments

Comments
 (0)
Please sign in to comment.