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 97471843d77061653170b4f41045fac3eeac21db

Use which instead of whereis in Makefile.win
Author: xaizek
Author date (UTC): 2012-02-18 12:00
Committer name: xaizek
Committer date (UTC): 2012-02-18 12:00
Parent(s): 044ff4f0f5a84f88f2fa4baf9d709f46b9ebad2b
Signing key:
Tree: a394e9d487ec95dc0cfe2af22fb302e372ca49e9
File Lines added Lines deleted
src/Makefile.win 4 4
File src/Makefile.win changed (mode: 100644) (index 7abcf823b..25737309a)
... ... vifmres.o: vifm.res
58 58 utils.c: version.c utils.c: version.c
59 59
60 60 version.c: version.c:
61 @if [ "x$$(whereis git)" != "x" ]; then \
61 @if [ "x$$(which git)" != "x" ]; then \
62 62 /bin/echo -n 'const char GIT_HASH[] = "' > version.c; \ /bin/echo -n 'const char GIT_HASH[] = "' > version.c; \
63 63 /bin/echo -n `git rev-parse HEAD` >> version.c; \ /bin/echo -n `git rev-parse HEAD` >> version.c; \
64 64 /bin/echo '";' >> version.c; \ /bin/echo '";' >> version.c; \
 
... ... version.c:
70 70 $(CC) $(CFLAGS) $< -o $@ $(CC) $(CFLAGS) $< -o $@
71 71
72 72 ../data/vifm-help.txt: ../data/vifm.1 ../data/vifm-help.txt: ../data/vifm.1
73 @if [ "x$$(whereis groff)" != "x" -a "x$$(whereis sed)" != "x" ]; then \
73 @if [ "x$$(which groff)" != "x" -a "x$$(which sed)" != "x" ]; then \
74 74 groff -Tutf8 -man ../data/vifm.1 | sed 's/.\x08//g' | sed 's/\x1b\[[0-9]*m//g' | sed 's/\r//g' > ../data/vifm-help.txt; \ groff -Tutf8 -man ../data/vifm.1 | sed 's/.\x08//g' | sed 's/\x1b\[[0-9]*m//g' | sed 's/\r//g' > ../data/vifm-help.txt; \
75 if [ "x$$(whereis dos2unix)" != "x" ]; then \
75 if [ "x$$(which dos2unix)" != "x" ]; then \
76 76 dos2unix ../data/vifm-help.txt; \ dos2unix ../data/vifm-help.txt; \
77 77 fi; \ fi; \
78 78 fi fi
79 79
80 80 tags.c: ../data/vim/doc/vifm.txt tags.c: ../data/vim/doc/vifm.txt
81 @if [ "x$$(whereis vim)" != "x" -a "x$$(whereis cat)" != "x" -a "x$$(whereis awk)" != "x" ]; then \
81 @if [ "x$$(which vim)" != "x" -a "x$$(which cat)" != "x" -a "x$$(which awk)" != "x" ]; then \
82 82 vim -c 'helptags $(dir $<)|q'; \ vim -c 'helptags $(dir $<)|q'; \
83 83 cat $(dir $<)/tags | awk ' \ cat $(dir $<)/tags | awk ' \
84 84 BEGIN { \ BEGIN { \
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