Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rhildred/git-pwa
git-cli for use in a pwa
https://github.com/rhildred/git-pwa
Last synced: 19 days ago
JSON representation
git-cli for use in a pwa
- Host: GitHub
- URL: https://github.com/rhildred/git-pwa
- Owner: rhildred
- License: mit
- Created: 2023-05-09T23:37:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-01T14:30:56.000Z (10 months ago)
- Last Synced: 2024-12-19T06:15:52.489Z (19 days ago)
- Language: JavaScript
- Size: 329 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-pwa
## git-cli for use in pwa where git is not installed.
### Quick start
1. Create an empty folder on a machine with a node version 16 or later environment
OR go to stackblitz.com and select node.js environment
2. `npx git-pwa --branch next clone https://github.com/diy-pwa/coming-soon.git .`### Workflow
This is meant to support the workflow for creating and maintaining a new repo. For instance:
```bash
echo "# testOct15" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/rhildred/testOct15.git
git push -u origin main
```
It is also meant to support this workflow:```bash
git remote add origin https://github.com/rhildred/test-of-push-u.git
git branch -M main
git push -u origin main
```After it has been pushed, git clones, adds, and commits should be the bulk of what is required. Please let me know by filing an issue if it is not.