git 合并add commit push 三个命令合为一个

admin3年前git1272

将add、commit、push 三个命令合为一个:

git config --global alias.cmp '!f() { git add -A && git commit -m "$@" && git push; }; f'

使用时只需要 git cmp "内容"
由此可知若想讲add、commit两个命令合为一个只需要输入下面的命令


git config --global alias.cm '!f() { git add -A && git commit -m "$@"; }; f'

使用时只需要 git cm "内容"


---原生写法

git addcommit一起操作 合并操作
千次阅读
2020-02-02 23:27:28

welcome to my blog

执行git commit -am "提交描述"即可将add和commit操作合并, 不需要先git add file 再 git commit -m “提交描述” 了

-a
–all
参数作用: Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected.

-m
–message=
参数作用 Use the given as the commit message. If multiple -m options are given, their values are concatenated as separate paragraphs.


相关文章

使用github的方法

在github建库在本地用GIT bash 生成公钥,命令如下:ssh-keygen -t rsa -C "xxxxx@xxxxx.com"...

git远程服务器部署

添加用户组与用户$ groupadd git $ useradd git -g git创建证书登录:    收集所有需...

本地设置git指向,以及sublimet与简化推化流程

 git remote add my git@192.168.8.198:/***/****.git git push --set-upstream my master执行以上两个...

git在本地有多个远程库的操作与管理

git在本地有多个远程库的操作与管理

当git在本地有多个远程库的时候,第一次git push的时候,要输入完整的命令,git push "别名" master在sublime里运行的时候,就会默认上次指定的"...

git里面origin是从哪里来的,是什么意思

已有的回答里都没有解释清楚'origin'是从哪里来的。使用git,一般的步骤是这样的:1. 在本地建立git版本库:在本地工程目录(如: ~/myProject)下执行:  ...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。