the very very very stupid csv content tracker 🤧
Management for Sheet (ex: GoogleSpreadSheet) like git 😑
npm install -g @yukihirop/sit
sit -h
Usage: sit [options] [command]
sit cli
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
cat-file [options] <hash> cat sit objects
hash-object [options] <path> compute hash sit object
branch [options] operate branch
checkout [options] [repository] [name] checkout branch
status status dist file
diff diff dist file
commit [options] commit dist file
push [options] <repository> <branch> push rows into Sheet
fetch [options] <repository> [branch] fetch rows from Sheet
merge [options] [repository] [branch] merge rows
clone [options] <repository> <url> clone rows from sheet
browse-remote [repository] browse remote repository
config [options] <key> <value> configure sitconfig
remote [options] <subcommand> <repository> [url] set sitconfig
log [options] Shows the commit logs
reflog Shows the ref logs
show-ref Show refs
rev-parse [options] [args] Many Sit porcelainish commands take mixture of flags
pull-request [options] <repository> <args> Create pull request in Sheet
init create setting file (.sitsetting)
clasp clasp cli
repo repo cli
stash stash cli
- GoogleSpreadSheet
Full docs are available at https://yukihirop.github.io/sit
The configuration file called .sitsetting
is a file that contains all settings.
- Schema information file managed by GoogleSpreadSheet.
- Authentication information for using GoogleSpreadSheetAPI.
- Information such as output destination of deliverables.
The default settings are as follows:
---
version: "1.0.0"
sheet:
gss:
auth:
credPath: ./creds.json
openAPIV3Schema:
type: object
properties:
ja:
type: string
description: 日本語
en:
type: string
description: 英語
key:
type: string
description: キー
defaultWorksheet:
rowCount: 10000
colCount: 20
repo:
local: .sit
dist:
path: ./dist
sheetName: "master_data.csv"
$ node -v
v12.13.0
$ npm -v
6.12.0
$ yarn -v
1.19.2
sit
has environment variables to flexibly set the location of local repositories
and
configuration file
, and environment variables required to access GoogleSpreadSheet
.
name | content | default |
---|---|---|
SIT_DIR | Path to local repository | . |
SIT_SETTING_DIR | Path to .sitsetting |
. |
SIT_GOOGLE_SERVICE_ACCOUNT_EMAIL | Google Service Account Email | |
SIT_GOOGLE_PRIVATE_KEY | Google Private Key |
This package is available as open source under the terms of the MIT License.
- Fork it ( http://github.com/yukihirop/sit/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request