Skip to content

Commit

Permalink
Use ==>> as a bash prompt across the project
Browse files Browse the repository at this point in the history
This change will unify the layout between documentation and CLI logging.

#167
  • Loading branch information
extsoft committed Sep 14, 2019
1 parent a4ac749 commit deba86c
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions docs/commands.md
Expand Up @@ -48,7 +48,7 @@ successful push, the given and temporary branches are removed.

Approximate commands flow is
```bash
==> git elegant accept-work task-123
==>> git elegant accept-work task-123
git fetch --all --tags
git checkout --force -B __eg origin/task-123
git status
Expand All @@ -75,7 +75,7 @@ as regular Git commands.

Approximate commands flow is
```bash
==> git elegant acquire-repository
==>> git elegant acquire-repository
################ User-specific options ################
git config --local user.name "Dmytro Serdiuk"
git config --local user.email "dmytro.serdiuk@email.com"
Expand Down Expand Up @@ -123,7 +123,7 @@ you'll try to modify history of the default local branch.

Approximate commands flow is
```bash
==> git elegant amend-work
==>> git elegant amend-work
git add --interactive
git diff --cached --check
git commit --amend
Expand All @@ -142,7 +142,7 @@ have to choose either batch or one-by-one deletion procedure using

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

Approximate commands flow is
```bash
==> git elegant clone-repository git@github.com:bees-hive/elegant-git.git
==>> git elegant clone-repository git@github.com:bees-hive/elegant-git.git
git clone git@github.com:bees-hive/elegant-git.git
cd elegant-git
git elegant acquire-repository
Expand All @@ -175,7 +175,7 @@ as for other cases when you need iteration over the available commands.

Approximate commands flow is
```bash
==> git elegant commands
==>> git elegant commands
echo <command>
echo ...
```
Expand All @@ -192,7 +192,7 @@ equal to the local one.

Approximate commands flow is
```bash
==> git elegant deliver-work
==>> git elegant deliver-work
git fetch
git rebase origin/master
git push --set-upstream --force origin task-123:task-123
Expand All @@ -209,7 +209,7 @@ configuration.

Approximate commands flow is
```bash
==> git elegant init-repository
==>> git elegant init-repository
git init
git elegant acquire-repository
```
Expand All @@ -227,7 +227,7 @@ to the remote one. However, it can be overridden by giving a second argument.

Approximate commands flow is
```bash
==> git elegant obtain-work new-feature task-133
==>> git elegant obtain-work new-feature task-133
git fetch --all
git checkout -B task-133 custom-remote/new-feature
```
Expand All @@ -244,7 +244,7 @@ performed.

Approximate commands flow is
```bash
==> git elegant save-work
==>> git elegant save-work
git add --interactive
git diff --cached --check
git commit
Expand All @@ -262,7 +262,7 @@ branch.

Approximate commands flow is
```bash
==> git elegant start-work task-123
==>> git elegant start-work task-123
git stash save elegant-git
git checkout master
git pull
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-accept-work
Expand Up @@ -23,7 +23,7 @@ successful push, the given and temporary branches are removed.
Approximate commands flow is
\`\`\`bash
==> git elegant accept-work task-123
==>> git elegant accept-work task-123
git fetch --all --tags
git checkout --force -B __eg origin/task-123
git status
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-acquire-repository
Expand Up @@ -55,7 +55,7 @@ as regular Git commands.
Approximate commands flow is
\`\`\`bash
==> git elegant acquire-repository
==>> git elegant acquire-repository
################ User-specific options ################
git config --local user.name "Dmytro Serdiuk"
git config --local user.email "dmytro.serdiuk@email.com"
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-amend-work
Expand Up @@ -20,7 +20,7 @@ you'll try to modify history of the default local branch.
Approximate commands flow is
\`\`\`bash
==> git elegant amend-work
==>> git elegant amend-work
git add --interactive
git diff --cached --check
git commit --amend
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-clear-local
Expand Up @@ -22,7 +22,7 @@ have to choose either batch or one-by-one deletion procedure using
Approximate commands flow is
\`\`\`bash
==> git elegant clear-local
==>> git elegant clear-local
git branch -d task-24
git branch -d 2349
git branch -D task-1
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-clone-repository
Expand Up @@ -19,7 +19,7 @@ Clones a repository into a new directory and runs its configuration.
Approximate commands flow is
\`\`\`bash
==> git elegant clone-repository git@github.com:bees-hive/elegant-git.git
==>> git elegant clone-repository git@github.com:bees-hive/elegant-git.git
git clone git@github.com:bees-hive/elegant-git.git
cd elegant-git
git elegant acquire-repository
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-commands
Expand Up @@ -20,7 +20,7 @@ as for other cases when you need iteration over the available commands.
Approximate commands flow is
\`\`\`bash
==> git elegant commands
==>> git elegant commands
echo <command>
echo ...
\`\`\`
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-deliver-work
Expand Up @@ -21,7 +21,7 @@ equal to the local one.
Approximate commands flow is
\`\`\`bash
==> git elegant deliver-work
==>> git elegant deliver-work
git fetch
git rebase origin/master
git push --set-upstream --force origin task-123:task-123
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-init-repository
Expand Up @@ -20,7 +20,7 @@ configuration.
Approximate commands flow is
\`\`\`bash
==> git elegant init-repository
==>> git elegant init-repository
git init
git elegant acquire-repository
\`\`\`
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-obtain-work
Expand Up @@ -22,7 +22,7 @@ to the remote one. However, it can be overridden by giving a second argument.
Approximate commands flow is
\`\`\`bash
==> git elegant obtain-work new-feature task-133
==>> git elegant obtain-work new-feature task-133
git fetch --all
git checkout -B task-133 custom-remote/new-feature
\`\`\`
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-save-work
Expand Up @@ -21,7 +21,7 @@ performed.
Approximate commands flow is
\`\`\`bash
==> git elegant save-work
==>> git elegant save-work
git add --interactive
git diff --cached --check
git commit
Expand Down
2 changes: 1 addition & 1 deletion libexec/git-elegant-start-work
Expand Up @@ -21,7 +21,7 @@ branch.
Approximate commands flow is
\`\`\`bash
==> git elegant start-work task-123
==>> git elegant start-work task-123
git stash save elegant-git
git checkout master
git pull
Expand Down

0 comments on commit deba86c

Please sign in to comment.