Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenhack/git-wat
https://github.com/zenhack/git-wat
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zenhack/git-wat
- Owner: zenhack
- License: gpl-3.0
- Created: 2015-11-23T01:48:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-23T01:49:09.000Z (about 9 years ago)
- Last Synced: 2024-10-22T07:02:52.483Z (2 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
`git-wat` (Web API Tool) is a tool for interacting with the web APIs on
sites like github, gitlab, bitbucket etc. It lets you do routine tasks
without leaving the command line. For example, on Github, without
`git-wat` Creating a repo:git init my-project
cd my-project
# Do stuff
git add .
git commit
git remote add origin [email protected]:me/my-project
# Go to github's website, log in, navigate to the create repo
# dialog, and fill out the form.
git push -u origin masterWith `git-wat`:
git init my-project
cd my-project
# Do stuff
git add .
git commit
git remote add origin [email protected]:me/my-project
git wat init origin my-project
git push -u origin masterThis is very WIP.
License: GPLv3 or later.