Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitflow
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
gitflow
Commits
78a7e4a7
Commit
78a7e4a7
authored
Jan 26, 2017
by
cmosh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Readme fix for npm
parent
05ceb1cf
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
10 deletions
+12
-10
README.md
README.md
+3
-1
flow-bugfix.js
src/flow-bugfix.js
+2
-2
flow-config.js
src/flow-config.js
+1
-1
flow-feature.js
src/flow-feature.js
+1
-1
flow-hotfix.js
src/flow-hotfix.js
+1
-1
flow-init.js
src/flow-init.js
+1
-1
flow-log.js
src/flow-log.js
+1
-1
flow-release.js
src/flow-release.js
+1
-1
flow-support.js
src/flow-support.js
+1
-1
No files found.
README.md
View file @
78a7e4a7
...
...
@@ -24,7 +24,9 @@ A quick cheatsheet was made by Daniel Kummer:
## Installing git-flow
npm -i gitflow (Mac and Linux users only)
```
shell
npm i
-g
gitflow
#Mac and Linux users only, will fail on windows
```
## Contributing
...
...
src/flow-bugfix.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
@@ -10,7 +10,7 @@ if (!which('git')) {
exec
(
'
git flow bugfix
'
+
args
,{
silent
:
true
},
function
(
code
,
stdout
,
stderr
)
{
console
.
log
(
stdout
.
replace
(
"
git
"
,
""
));
console
.
log
(
stdout
.
replace
(
'
git
'
,
''
));
console
.
log
(
stderr
);
});
src/flow-config.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
src/flow-feature.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
src/flow-hotfix.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
src/flow-init.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
src/flow-log.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
src/flow-release.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
src/flow-support.js
View file @
78a7e4a7
require
(
'
shelljs/global
'
);
const
program
=
require
(
'
commander
'
);
program
.
parse
(
process
.
argv
);
var
args
=
program
.
args
;
var
args
=
program
.
args
.
toString
().
replace
(
'
,
'
,
'
'
)
;
if
(
!
which
(
'
git
'
))
{
echo
(
'
Sorry, this script requires git
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment