git clone https://github.com/zaminalili/zedfish.git
cd zedfish
fish install.fish
To verify installation:
~ (master)> zedfish
v1.0.0
cdls <directory_path>
– changes into the given directory and lists its contents (cd && ls
)
~ (master)> gitinit MyRepo
Initialized empty Git repository in /home/user/MyRepo/.git/
[main (root-commit) dc818c3] Add initial .gitignore
1 file changed, 423 insertions(+)
create mode 100644 .gitignore
~/MyRepo (main)>
cdlsa <directory_path>
– changes into the given directory and lists all contents, including hidden files (cd && ls -a
).
copy <>
– copies text or files to the clipboard
pwdc
– prints the current directory path and copies it to the clipboard
gitinit <repo_name>
– creates a new Git repository with a .gitignore
file
~ (master)> gitinit MyRepo
Initialized empty Git repository in /home/user/MyRepo/.git/
[main (root-commit) dc818c3] Add initial .gitignore
1 file changed, 423 insertions(+)
create mode 100644 .gitignore
~/MyRepo (main)>
Note: A .gitignore
file must exist inside /home/username/.git-templates
.
rider
– opens JetBrains Rider
rider .
– opens the current directory in Rider
rider <file_path>
or rider <directory_path>
– opens the specified file or directory in Rider
Note: The rider.sh
file must exist in /opt/JetBrains Rider-xxxx.x.x/bin
.