Skip to content

Commit

Permalink
auto push
Browse files Browse the repository at this point in the history
  • Loading branch information
go-bai committed Sep 9, 2023
1 parent 94c4784 commit a23aafe
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
### install hugo extended

```bash
go install golang.org/dl/go1.20@latest
```

### add a new page

```bash
hugo new content post/linux/jq-command.md
```

### push

```bash
bash push.sh
```
1 change: 1 addition & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
tags: []
---

10 changes: 10 additions & 0 deletions content/post/linux/jq-command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: "jq 命令"
date: 2023-09-09T15:04:05+08:00
draft: true
tags: ['linux', 'jq']
---

> jq命令对于`api boy`还是挺常用的,在此记录一下一些常用的操作。

2 changes: 2 additions & 0 deletions push.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

git submodule update --recursive --remote
git add .
git commit -m "auto push"
Expand Down

0 comments on commit a23aafe

Please sign in to comment.