猿问

如何在git中别名命令?

我看了一个截屏录像,那里有人


git st

git ci

上班。当我这样做时,我遇到一个错误,问我是否还有其他意思。

作为git newb,我需要知道您需要做什么才能完成此任务?


红颜莎娜
浏览 711回答 3
3回答

德玛西亚99

我认为最有用的gitconfig是这样的,我们总是在git中使用20%的功能,您可以尝试“ g ll”,这很了不起,详细信息:[user]    name = my name    email = me@example.com[core]      editor = vi [alias]    aa = add --all    bv = branch -vv    ba = branch -ra    bd = branch -d    ca = commit --amend    cb = checkout -b    cm = commit -a --amend -C HEAD    ci = commit -a -v    co = checkout    di = diff    ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat    ld = log --pretty=format:"%C(yellow)%h\\ %C(green)%ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short --graph    ls = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative    mm = merge --no-ff    st = status --short --branch    tg = tag -a     pu = push --tags    un = reset --hard HEAD      uh = reset --hard HEAD^   [color]      diff = auto      status = auto      branch = auto    [branch]      autosetuprebase = always
随时随地看视频慕课网APP
我要回答