1
0
Fork 0
mirror of synced 2024-11-23 07:45:34 -05:00
zimfw/modules/git/functions
Eric Nielsen d371d80af2
Unify the for syntax
For short single commands, prefer a one-liner `for` with the zsh syntax:
```
for x (foo bar) print ${x}
```
Otherwise just place `; do` on the same line as the POSIX `for ... in`:
```
for x in foo bar; do
  print ${x}
done
```

Closes #268
2018-04-25 08:59:19 -05:00
..
_git-branch-delete-interactive [git] Add completion for gbx and gbX 2018-04-13 15:13:43 -05:00
git-branch-current [git] Breaking changes in aliases and functions 2018-02-23 09:28:10 +01:00
git-branch-delete-interactive Unify the for syntax 2018-04-25 08:59:19 -05:00
git-dir [git] Review all functions but ones using git fsck 2018-01-10 10:25:25 -05:00
git-ignore-add Unify the for syntax 2018-04-25 08:59:19 -05:00
git-root [git] Review all functions but ones using git fsck 2018-01-10 10:25:25 -05:00
git-stash-clear-interactive [git] Add git-branch-delete-interactive 2018-02-05 10:44:59 -05:00
git-stash-recover [git] Review all functions but ones using git fsck 2018-01-10 10:25:25 -05:00
git-submodule-move [git] Review all functions but ones using git fsck 2018-01-10 10:25:25 -05:00
git-submodule-remove [git] Review all functions but ones using git fsck 2018-01-10 10:25:25 -05:00