You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release contains a few minor updates from the origional fork. The
main purprose for this release though is to clearly differentiate
gitflow-cjs from gitflow-avh via the change in the major version.
Copy file name to clipboardExpand all lines: README.md
+19-25Lines changed: 19 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,14 @@
1
-
# git-flow (AVH Edition)
1
+
# git-flow (CJS Edition)
2
2
3
3
A collection of Git extensions to provide high-level repository operations
4
4
for Vincent Driessen's [branching model](http://nvie.com/git-model "original
5
5
blog post"). This fork adds functionality not added to the original branch.
6
6
7
+
## Why another git-flow fork
8
+
The last commit to [gitflow-avh](https://github.com/petervanderdoes/gitflow-avh)
9
+
was on May 23, 2019. Since then there have been a number of issues opened that have
10
+
not be resolved. This fork will address those outstanding issues and open PR's along
11
+
with continueing to maintain the git-flow branching model.
7
12
8
13
## Getting started
9
14
@@ -45,7 +50,7 @@ of the project Wiki.
45
50
* Version Numbering Scheme.
46
51
Starting with version 1.0, the project uses the following scheme:
47
52
\<MAJOR\>.\<MINOR\>.\<REVISION\>\
48
-
*AVH is the acronym of "A VirtualHome"
53
+
*CJS is the acronym of "CJ Systems"
49
54
50
55
## Please help out
51
56
@@ -66,33 +71,22 @@ using the complete version number.
66
71
67
72
## Contributing
68
73
69
-
Fork the repository. Then, run:
74
+
If you are resubmiting an open pull request see below. If submiting a new pull request addressing an already open issue with gitflow-avh please link the relevant issue in the description. For any new issues please see below
The `-b master` switch has to be added since the fork operation automatically
77
-
clones the `develop` branch of the official gitflow repository and cloning it
78
-
results in a local repository with just a `develop` branch.
79
-
80
-
If you do not have gitflow installed yet install it by running `make && make install`.
81
-
82
-
After that initialize the local gitflow repository with gitflow itself:
76
+
### Quick Start for new issues
83
77
84
-
```shell
85
-
git flow init -d
86
-
git flow feature start <your feature>
87
-
```
88
-
89
-
Then, do work and commit your changes.
78
+
* Please fork and clone a local copy of [gitflow-cjs](https://github.com/CJ-Systems/gitflow-cjs).
79
+
* Create a seperate issue branch based off develop.
80
+
* Commit commit you fix to the local branch.
81
+
* Please update your local copy with the latest devlop branch of [gitflow-cjs](https://github.com/CJ-Systems/gitflow-cjs)
82
+
* Rebase develop onto your local branch.
83
+
* Push your fix to your fork.
84
+
* When ready to submit a pull request.
90
85
91
-
```shell
92
-
git flow feature publish <your feature>
93
-
```
86
+
### How to submit a pull request
87
+
When resubmitting an open pull request from [gitflow-avh](https://github.com/petervanderdoes/gitflow-avh) the base repository will need to be changed from petervanderdoes/gitflow-avh to CJ-Systems/gitflow-cjs.
94
88
95
-
When done, open a pull request to your feature branch.
89
+
For any new PRs releated to gitflow-cjs you can use on of the keywords from [Linking a pull request to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) to automatically close the releated issue.
0 commit comments