xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 13451543ffdc4b06ad75ad0ed49205f570363d19

Display name of archive after "deploy ver archive"
Author: xaizek
Author date (UTC): 2015-06-17 18:05
Committer name: xaizek
Committer date (UTC): 2015-06-18 15:47
Parent(s): b3ec762c7e9a384eb69428325be8ee944dca9802
Signing key:
Tree: 49bd189ff2f1d48d95e5ff829b180342165bde92
File Lines added Lines deleted
deploy 5 2
File deploy changed (mode: 100755) (index ba43f8a99..bd848bf82)
... ... if [ "$target" = all -o "$target" = archive ]; then
131 131 done done
132 132 cp src/vifm-pause src/*.dll src/*.exe "$dir" cp src/vifm-pause src/*.dll src/*.exe "$dir"
133 133 strip -S --strip-unneeded $dir/*.dll $dir/*.exe strip -S --strip-unneeded $dir/*.dll $dir/*.exe
134 rm -f "$dir.zip"
135 zip -9 -r "$dir.zip" "$dir"
134
135 archive_name="$dir.zip"
136 rm -f "$archive_name"
137 zip -9 -r "$archive_name" "$dir"
136 138 fi fi
139 echo "Archive: $archive_name"
137 140 fi fi
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master