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
Copy file name to clipboardExpand all lines: README.md
+8-12Lines changed: 8 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,16 +44,14 @@ brew tap praqma/praqma-tap
44
44
brew install git-phlow
45
45
```
46
46
### Linux
47
-
You can also install git-phlow running the following commands. That will download and install the project.
48
-
Remember to use the latest version.
47
+
Install git-phlow running the following commands. Remember to use the latest version.
49
48
50
49
```shell
51
-
#For linux
52
50
wget https://github.com/Praqma/git-phlow/releases/download/v2.3.2/git-phlow-2.3.2-linux-amd64.tar.gz && tar -xzf git-phlow-2.3.2-linux-amd64.tar.gz && mv git-phlow /usr/local/bin
53
51
```
54
52
55
53
### Windows
56
-
git-phlow can be install with [scoop](http://scoop.sh/), a package manager for command line tools. It can also be install by downloading the latest [release]((https://github.com/Praqma/git-phlow/releases))
54
+
Install with [scoop](http://scoop.sh/), a package manager for command line tools. Or download the latest [release]((https://github.com/Praqma/git-phlow/releases))
57
55
58
56
**Install Scoop**
59
57
@@ -92,23 +90,21 @@ git phlow workon 42
92
90
93
91
- This will create a branch: `42-some-issue-title`
94
92
- Make the changes and complete the task
95
-
- When it's done, type:
93
+
- When done, add everything and commit with a single command:
96
94
97
95
```git
98
96
git phlow wrapup
99
-
100
-
#adds everything and commits the changes
101
-
#alternately you can add your changes manually and use
102
-
git phlow wrapup
103
97
```
98
+
104
99
- Now that the changes are ready, type:
105
100
106
101
```git
107
102
git phlow deliver
108
-
# renames local branch to: delivered/42-some-issue-title
- It renames the local branch to: `delivered/42-some-issue-title`
106
+
- It pushes remote branch named: `ready/42-some-issue-title`
107
+
112
108
If the automation tools have been configured to listen for __ready/__ branches, they will pick up the branch and integrate them with the stable branch.
113
109
If you do not have an automation system, you can deliver the work to your default branch by doing a local deliver instead.
0 commit comments