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
093a1477
Commit
093a1477
authored
Jan 21, 2010
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added header comments to all files.
parent
f7f687ce
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
0 deletions
+60
-0
gitflow
gitflow
+12
-0
gitflow-feature
gitflow-feature
+12
-0
gitflow-hotfix
gitflow-hotfix
+12
-0
gitflow-release
gitflow-release
+12
-0
gitflow-sh-setup
gitflow-sh-setup
+12
-0
No files found.
gitflow
View file @
093a1477
#!/bin/sh
#!/bin/sh
#
# gitflow -- A collection of Git wrapper scripts to provide high-level
# repository operations for Vincent Driessen's branching model:
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
#
# Feel free to contribute to this project at:
# http://github.com/nvie/gitflow
#
# Copyright (c) 2010 by Vincent Driessen
#
usage
()
{
usage
()
{
echo
"usage: gitflow <start|finish> <btype> <args>"
echo
"usage: gitflow <start|finish> <btype> <args>"
...
...
gitflow-feature
View file @
093a1477
#!/bin/sh
#!/bin/sh
#
# gitflow -- A collection of Git wrapper scripts to provide high-level
# repository operations for Vincent Driessen's branching model:
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
#
# Feel free to contribute to this project at:
# http://github.com/nvie/gitflow
#
# Copyright (c) 2010 by Vincent Driessen
#
usage
()
{
usage
()
{
echo
"usage: gitflow start feature <name> [<base>]"
echo
"usage: gitflow start feature <name> [<base>]"
...
...
gitflow-hotfix
View file @
093a1477
#!/bin/sh
#!/bin/sh
#
# gitflow -- A collection of Git wrapper scripts to provide high-level
# repository operations for Vincent Driessen's branching model:
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
#
# Feel free to contribute to this project at:
# http://github.com/nvie/gitflow
#
# Copyright (c) 2010 by Vincent Driessen
#
usage
()
{
usage
()
{
echo
"usage: gitflow start hotfix <release>"
echo
"usage: gitflow start hotfix <release>"
...
...
gitflow-release
View file @
093a1477
#!/bin/sh
#!/bin/sh
#
# gitflow -- A collection of Git wrapper scripts to provide high-level
# repository operations for Vincent Driessen's branching model:
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
#
# Feel free to contribute to this project at:
# http://github.com/nvie/gitflow
#
# Copyright (c) 2010 by Vincent Driessen
#
usage
()
{
usage
()
{
echo
"usage: gitflow start release <release>"
echo
"usage: gitflow start release <release>"
...
...
gitflow-sh-setup
View file @
093a1477
#!/bin/sh
#!/bin/sh
#
# gitflow -- A collection of Git wrapper scripts to provide high-level
# repository operations for Vincent Driessen's branching model:
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
#
# Feel free to contribute to this project at:
# http://github.com/nvie/gitflow
#
# Copyright (c) 2010 by Vincent Driessen
#
gitflow_check_clean_working_tree
()
{
gitflow_check_clean_working_tree
()
{
echo
"Working tree
$(
pwd
)
clean."
echo
"Working tree
$(
pwd
)
clean."
...
...
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