Skip to content

Commit deba86c

Browse files
committed
Use ==>> as a bash prompt across the project
This change will unify the layout between documentation and CLI logging. #167
1 parent a4ac749 commit deba86c

12 files changed

+22
-22
lines changed

docs/commands.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ successful push, the given and temporary branches are removed.
4848

4949
Approximate commands flow is
5050
```bash
51-
==> git elegant accept-work task-123
51+
==>> git elegant accept-work task-123
5252
git fetch --all --tags
5353
git checkout --force -B __eg origin/task-123
5454
git status
@@ -75,7 +75,7 @@ as regular Git commands.
7575

7676
Approximate commands flow is
7777
```bash
78-
==> git elegant acquire-repository
78+
==>> git elegant acquire-repository
7979
################ User-specific options ################
8080
git config --local user.name "Dmytro Serdiuk"
8181
git config --local user.email "[email protected]"
@@ -123,7 +123,7 @@ you'll try to modify history of the default local branch.
123123

124124
Approximate commands flow is
125125
```bash
126-
==> git elegant amend-work
126+
==>> git elegant amend-work
127127
git add --interactive
128128
git diff --cached --check
129129
git commit --amend
@@ -142,7 +142,7 @@ have to choose either batch or one-by-one deletion procedure using
142142

143143
Approximate commands flow is
144144
```bash
145-
==> git elegant clear-local
145+
==>> git elegant clear-local
146146
git branch -d task-24
147147
git branch -d 2349
148148
git branch -D task-1
@@ -158,7 +158,7 @@ Clones a repository into a new directory and runs its configuration.
158158

159159
Approximate commands flow is
160160
```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
162162
git clone [email protected]:bees-hive/elegant-git.git
163163
cd elegant-git
164164
git elegant acquire-repository
@@ -175,7 +175,7 @@ as for other cases when you need iteration over the available commands.
175175

176176
Approximate commands flow is
177177
```bash
178-
==> git elegant commands
178+
==>> git elegant commands
179179
echo <command>
180180
echo ...
181181
```
@@ -192,7 +192,7 @@ equal to the local one.
192192

193193
Approximate commands flow is
194194
```bash
195-
==> git elegant deliver-work
195+
==>> git elegant deliver-work
196196
git fetch
197197
git rebase origin/master
198198
git push --set-upstream --force origin task-123:task-123
@@ -209,7 +209,7 @@ configuration.
209209

210210
Approximate commands flow is
211211
```bash
212-
==> git elegant init-repository
212+
==>> git elegant init-repository
213213
git init
214214
git elegant acquire-repository
215215
```
@@ -227,7 +227,7 @@ to the remote one. However, it can be overridden by giving a second argument.
227227

228228
Approximate commands flow is
229229
```bash
230-
==> git elegant obtain-work new-feature task-133
230+
==>> git elegant obtain-work new-feature task-133
231231
git fetch --all
232232
git checkout -B task-133 custom-remote/new-feature
233233
```
@@ -244,7 +244,7 @@ performed.
244244

245245
Approximate commands flow is
246246
```bash
247-
==> git elegant save-work
247+
==>> git elegant save-work
248248
git add --interactive
249249
git diff --cached --check
250250
git commit
@@ -262,7 +262,7 @@ branch.
262262

263263
Approximate commands flow is
264264
```bash
265-
==> git elegant start-work task-123
265+
==>> git elegant start-work task-123
266266
git stash save elegant-git
267267
git checkout master
268268
git pull

libexec/git-elegant-accept-work

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ successful push, the given and temporary branches are removed.
2323
2424
Approximate commands flow is
2525
\`\`\`bash
26-
==> git elegant accept-work task-123
26+
==>> git elegant accept-work task-123
2727
git fetch --all --tags
2828
git checkout --force -B __eg origin/task-123
2929
git status

libexec/git-elegant-acquire-repository

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ as regular Git commands.
5555
5656
Approximate commands flow is
5757
\`\`\`bash
58-
==> git elegant acquire-repository
58+
==>> git elegant acquire-repository
5959
################ User-specific options ################
6060
git config --local user.name "Dmytro Serdiuk"
6161
git config --local user.email "[email protected]"

libexec/git-elegant-amend-work

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ you'll try to modify history of the default local branch.
2020
2121
Approximate commands flow is
2222
\`\`\`bash
23-
==> git elegant amend-work
23+
==>> git elegant amend-work
2424
git add --interactive
2525
git diff --cached --check
2626
git commit --amend

libexec/git-elegant-clear-local

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ have to choose either batch or one-by-one deletion procedure using
2222
2323
Approximate commands flow is
2424
\`\`\`bash
25-
==> git elegant clear-local
25+
==>> git elegant clear-local
2626
git branch -d task-24
2727
git branch -d 2349
2828
git branch -D task-1

libexec/git-elegant-clone-repository

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Clones a repository into a new directory and runs its configuration.
1919
2020
Approximate commands flow is
2121
\`\`\`bash
22-
==> git elegant clone-repository [email protected]:bees-hive/elegant-git.git
22+
==>> git elegant clone-repository [email protected]:bees-hive/elegant-git.git
2323
git clone [email protected]:bees-hive/elegant-git.git
2424
cd elegant-git
2525
git elegant acquire-repository

libexec/git-elegant-commands

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ as for other cases when you need iteration over the available commands.
2020
2121
Approximate commands flow is
2222
\`\`\`bash
23-
==> git elegant commands
23+
==>> git elegant commands
2424
echo <command>
2525
echo ...
2626
\`\`\`

libexec/git-elegant-deliver-work

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ equal to the local one.
2121
2222
Approximate commands flow is
2323
\`\`\`bash
24-
==> git elegant deliver-work
24+
==>> git elegant deliver-work
2525
git fetch
2626
git rebase origin/master
2727
git push --set-upstream --force origin task-123:task-123

libexec/git-elegant-init-repository

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ configuration.
2020
2121
Approximate commands flow is
2222
\`\`\`bash
23-
==> git elegant init-repository
23+
==>> git elegant init-repository
2424
git init
2525
git elegant acquire-repository
2626
\`\`\`

libexec/git-elegant-obtain-work

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ to the remote one. However, it can be overridden by giving a second argument.
2222
2323
Approximate commands flow is
2424
\`\`\`bash
25-
==> git elegant obtain-work new-feature task-133
25+
==>> git elegant obtain-work new-feature task-133
2626
git fetch --all
2727
git checkout -B task-133 custom-remote/new-feature
2828
\`\`\`

libexec/git-elegant-save-work

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ performed.
2121
2222
Approximate commands flow is
2323
\`\`\`bash
24-
==> git elegant save-work
24+
==>> git elegant save-work
2525
git add --interactive
2626
git diff --cached --check
2727
git commit

libexec/git-elegant-start-work

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ branch.
2121
2222
Approximate commands flow is
2323
\`\`\`bash
24-
==> git elegant start-work task-123
24+
==>> git elegant start-work task-123
2525
git stash save elegant-git
2626
git checkout master
2727
git pull

0 commit comments

Comments
 (0)