https://github.com/alextim/igrig.content
https://github.com/alextim/igrig.content
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/alextim/igrig.content
- Owner: alextim
- Created: 2021-04-12T14:55:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T14:45:22.000Z (over 2 years ago)
- Last Synced: 2025-03-25T17:51:39.416Z (about 1 year ago)
- Language: JavaScript
- Size: 19.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```