Git 收集别名】的更多相关文章

.gitconfig文件夹一般是在C:\Users\Administrator路径下,用于全局的git的配置 下面是git别名的设置: [alias] last = log -1 --stat a = add b = branch c = commit d = diff r = reset aa = add . br = branch ba = branch -a ca = commit - a cc = commit -a -m cl = clone ci = commit cm = comm…
git配置别名设置,保存一份 若git  config  --global  xxxx 设置,则文件一般在 C:\Users\Administrator\.gitconfig [alias] lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit co = checkout ci…
在git操作中有很多命令我们自己可以起别名,以提高操作效率. 1. 配置方式 1)项目级别的配置,仅对当前项目生效(将写入到.git/config文件中)    $ git config --global alias.st status 2)用户级别的配置(使用--global (将写入到~/.gitconfig中)    $ git config --global alias.st status    $ git config --global alias.co checkout 3)系统级别…
配置别名   有没有经常敲错命令?比如git status?status这个单词真心不好记. 如果敲git st就表示git status那就简单多了,当然这种偷懒的办法我们是极力赞成的. 我们只需要敲一行命令,告诉Git,以后st就表示status: $ git config --global alias.st status 好了,现在敲git st看看效果. 当然还有别的命令可以简写,很多人都用co表示checkout,ci表示commit,br表示branch: $ git config…
每次切换分支: git ckeckout branch_name 等命令费时又费力,git 别名配置起来: 别名配置: git config --global alias.ck ckeckout 其他一些命令push pull配置类似…
已经配置的别名 $ git config --global alias.st status $ git config --global alias.co checkout $ git config --global alias.ci commit $ git config --global alias.br branch $ git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(…
别名. 我可以使用这个命令查看repository的历史 git log --all --graph --decorate --oneline: 这个命令可能比较常用, 但是又比较长. 这时我可以创建一个自己的命令, 作为上面命令的别名. 假设我想使用git hist这个命令: git说这个命令不存在. 这时就可以使用git config alias.xxx命令去创建一个命令的别名: 其中--global表示这个别名是全局的(用户范围内的, 不只限于这个repository), 然后alias.…
对于常用的git的命令,可以通过配置别名的方式,提高工作效率. $ git config --global alias.co checkout //执行git co 相当于git checkout $ git config --global alias.ci commit //git commit $ git config --global alias.br branch //git branch$ git config --global alias.st status //git status…
废话不多说直接上添加别名语法 加上--global是针对当前用户起作用的,如果不加,那只针对当前的仓库起作用. git config --global alias.<自己想要的命令行> <git命令行> 例如我们经常配置git log换成自己想要的格式 git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgre…
git config --global alias.shortname command 例子如下 git config --global alias.psm 'push origin master' git config --global alias.plm 'pull origin master'…