This repository was archived by the owner on Jun 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed
Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments