-
Notifications
You must be signed in to change notification settings - Fork 11
git提交代码的简洁操作:编写脚本
ericwen edited this page Apr 20, 2019
·
2 revisions
当在本地创建github仓库的时候,需要在本地终端依次执行
git add .
git commit -m "describtion"
git push
略显麻烦,编写成脚本来执行。 例子:我的仓库在 ~/git/repos/ros 目录下,所以我的脚本程序是
#!/bin/sh
cd ~/git/repos/ros
git add .
git commit -m 'date +%Y-%m-%d' #单引号内的意思是获取当前日期
git push
我给他取名 git.sh 放在~目录下。
然后执行 chmod +x git.sh
,赋予它执行权限。
之后每次执行只需要 ./git.sh
即可。
Stay hungry,stay foolish.