@@ -48,7 +48,7 @@ successful push, the given and temporary branches are removed.
48
48
49
49
Approximate commands flow is
50
50
``` bash
51
- ==> git elegant accept-work task-123
51
+ ==>> git elegant accept-work task-123
52
52
git fetch --all --tags
53
53
git checkout --force -B __eg origin/task-123
54
54
git status
@@ -75,7 +75,7 @@ as regular Git commands.
75
75
76
76
Approximate commands flow is
77
77
``` bash
78
- ==> git elegant acquire-repository
78
+ ==>> git elegant acquire-repository
79
79
# ############### User-specific options ################
80
80
git config --local user.name " Dmytro Serdiuk"
81
81
git config --local user.email
" [email protected] "
@@ -123,7 +123,7 @@ you'll try to modify history of the default local branch.
123
123
124
124
Approximate commands flow is
125
125
``` bash
126
- ==> git elegant amend-work
126
+ ==>> git elegant amend-work
127
127
git add --interactive
128
128
git diff --cached --check
129
129
git commit --amend
@@ -142,7 +142,7 @@ have to choose either batch or one-by-one deletion procedure using
142
142
143
143
Approximate commands flow is
144
144
``` bash
145
- ==> git elegant clear-local
145
+ ==>> git elegant clear-local
146
146
git branch -d task-24
147
147
git branch -d 2349
148
148
git branch -D task-1
@@ -158,7 +158,7 @@ Clones a repository into a new directory and runs its configuration.
158
158
159
159
Approximate commands flow is
160
160
``` bash
161
- ==
> git elegant clone-repository
[email protected] :bees-hive/elegant-git.git
161
+ ==
>> git elegant clone-repository
[email protected] :bees-hive/elegant-git.git
162
162
git clone
[email protected] :bees-hive/elegant-git.git
163
163
cd elegant-git
164
164
git elegant acquire-repository
@@ -175,7 +175,7 @@ as for other cases when you need iteration over the available commands.
175
175
176
176
Approximate commands flow is
177
177
``` bash
178
- ==> git elegant commands
178
+ ==>> git elegant commands
179
179
echo < command>
180
180
echo ...
181
181
```
@@ -192,7 +192,7 @@ equal to the local one.
192
192
193
193
Approximate commands flow is
194
194
``` bash
195
- ==> git elegant deliver-work
195
+ ==>> git elegant deliver-work
196
196
git fetch
197
197
git rebase origin/master
198
198
git push --set-upstream --force origin task-123:task-123
@@ -209,7 +209,7 @@ configuration.
209
209
210
210
Approximate commands flow is
211
211
``` bash
212
- ==> git elegant init-repository
212
+ ==>> git elegant init-repository
213
213
git init
214
214
git elegant acquire-repository
215
215
```
@@ -227,7 +227,7 @@ to the remote one. However, it can be overridden by giving a second argument.
227
227
228
228
Approximate commands flow is
229
229
``` bash
230
- ==> git elegant obtain-work new-feature task-133
230
+ ==>> git elegant obtain-work new-feature task-133
231
231
git fetch --all
232
232
git checkout -B task-133 custom-remote/new-feature
233
233
```
@@ -244,7 +244,7 @@ performed.
244
244
245
245
Approximate commands flow is
246
246
``` bash
247
- ==> git elegant save-work
247
+ ==>> git elegant save-work
248
248
git add --interactive
249
249
git diff --cached --check
250
250
git commit
@@ -262,7 +262,7 @@ branch.
262
262
263
263
Approximate commands flow is
264
264
``` bash
265
- ==> git elegant start-work task-123
265
+ ==>> git elegant start-work task-123
266
266
git stash save elegant-git
267
267
git checkout master
268
268
git pull
0 commit comments