feature description: git add .
and git commit -m
and git push
workflow
我每天在 GitHub 写自己的工作记录、生活记录,写完保存并一键推送到远程仓库。
2022-04-20 增加此部分说明
个人使用 GitHub private repo 写“日记”已有两年多的历史(现在使用 GitHub + 自建 gitea 多端同步),每天写完之后将内容 push 到 GitHub 都是一件重复繁琐的事情,于是在 10 个月之前将他们抽出来做了这个工具。便携优雅且“有仪式感”的同步 git 内容。后续我又写过两篇文章,记录了 Windows 下通过 Powershell 设置 alias
进一步提升这个 workflow。可以参考我写的下面两篇文章
Linux/macOS 用户就更加简单了,设置一个 alias
即可,下面以 macOS 举🌰️
$ vim ~/.bash_profile
# 添加如下内容
alias notepush="/bin/bash /Users/xxx/Downloads/linux-gitpush.sh"
我习惯使用 notepush
这个别名。每次写完保存后,直接输入 notepush
即可同步到远端,在另一台电脑开始记录前先执行 git pull
拉取最新更新。
cp linux-gitpush.sh
to any folder you like, such as /path/of/linux-gitpush.sh
at current git repo's work dir, just run
bash /path/of/linux-gitpush.sh
cp windows-gitpush.bat
to any folder you like, such as D:\
, after copying, this file's absolute path is should be D:\windows-gitpush.bat
at current git repo's work dir, and just run
d:\windows-gitpush.bat
this output is like this
huadekaideMBP:notes-2021 huadekai$ bash linux-gitpush.sh
this a git push workflow in macOS or Linux, using a shell file
current time is: 2021-07-04 15:22:30
current work dir is: /Users/huadekai/Downloads/personal-projects/github/notes-2021
first step: git add .
second step: git commit -m 'xxxx'
[master b15a526] 2021-07-04 15:22:30 update
1 file changed, 1 insertion(+), 16 deletions(-)
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 12 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 293 bytes | 293.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To github.com:hellodk34/notes-2021.git
3c5905e..b15a526 master -> master
third step: git push. ending.
the end of the workflow.
the output is like this
D:\repo\github\notes-2021>windows-gitpush.bat
this a git push workflow in Windows, using a bat file
current time is: 07/04/2021 Sun 15:19:31.45
current work dir is: D:\repo\github\notes-2021
first step: git add .
Waiting for 0 seconds, press CTRL+C to quit ...
second step: git commit -m 'xxx'
[master 9e9da30] 07/04/2021 Sun 15:19:33.16 update
3 files changed, 42 insertions(+), 13 deletions(-)
Waiting for 0 seconds, press CTRL+C to quit ...
third step: git push
Enumerating objects: 9, done.
Counting objects: 100% (9/9), done.
Delta compression using up to 16 threads
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 918 bytes | 918.00 KiB/s, done.
Total 5 (delta 4), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (4/4), completed with 4 local objects.
To github.com:hellodk34/notes-2021.git
eddc27a..9e9da30 master -> master
the end of the workflow.
- 默认 git add 的是当前本地工作区的所有已改动文件
- git commit -m,提交的 message 信息,默认是时间+update 字符串拼接出来的
- 使用 vscode 时,快捷键 control + shift + ` 默认新建一个终端,此时所在工作目录就是 git 项目的根目录,直接执行
bash /path/of/linux-gitpush.sh
或d:\windows-gitpush.bat
即可 - Windows 下
git.exe
建议安装Git Bash
end.