Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alextim/igrig.content


https://github.com/alextim/igrig.content

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# IGRIG.CONTENT

Ctrl + Shift + B

```bash
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
SET commit_comment=
SET /p commit_comment=Input your comment for commit:
IF NOT DEFINED commit_comment (
SET commit_comment=content update
ECHO Default comment will be used for this commit
)

git status
git add .
git status
git commit -m "%commit_comment%"
git push
```