Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zenhack/git-wat


https://github.com/zenhack/git-wat

Last synced: 16 days ago
JSON representation

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 master

With `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 master

This is very WIP.

License: GPLv3 or later.