Skip to content
This repository was archived by the owner on Jun 7, 2024. It is now read-only.

Commit 66de7d6

Browse files
authored
[shell] add add-alias.bat
1 parent d155864 commit 66de7d6

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

add-alias.bat

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
@echo off
2+
:: Add-Git-Alias
3+
:: by KevinZonda
4+
:: Thanks @b1f6c1c4 & @zhullyb
5+
6+
:: Install & Import to env git and fgit before using this.
7+
8+
cls
9+
10+
echo ===================================
11+
echo = Add Git Alias =
12+
echo = by KevinZonda =
13+
echo = Thanks @b1f6c1c4 ^& @zhullyb =
14+
echo ===================================
15+
16+
echo Install ^& import git and fgit to env before using this.
17+
pause
18+
19+
cls
20+
echo ===================================
21+
echo = Add Git Alias =
22+
echo = by KevinZonda =
23+
echo = Thanks @b1f6c1c4 ^& @zhullyb =
24+
echo ===================================
25+
26+
echo -^> Adding...
27+
echo --^> fclone
28+
git config --global alias.fclone '!fgit clone'
29+
30+
echo --^> fpull
31+
git config --global alias.fpull '!fgit pull'
32+
33+
echo --^> debug
34+
git config --global alias.debug '!fgit debug'
35+
36+
echo --^> dl ^& get ^& download
37+
git config --global alias.dl '!fgit dl'
38+
git config --global alias.get '!fgit get'
39+
git config --global alias.download '!fgit download'
40+
41+
echo --^> conv
42+
git config --global alias.conv '!fgit conv'
43+
git config --global alias.convert '!fgit convert'
44+
45+
pause

0 commit comments

Comments
 (0)