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

https://github.com/astronomersiva/egit

A tool to automate my Github workflow while creating a new repository.
https://github.com/astronomersiva/egit

Last synced: about 2 months ago
JSON representation

A tool to automate my Github workflow while creating a new repository.

Awesome Lists containing this project

README

        

#eGit

This is a Python script to automate my Github workflow while
setting up a new repository.

I feel lazy to type the following commands everytime I set up
a new repository:

```

git init
git remote add origin https://github.com/astronomersiva/repo.git
git add .
git commit -m "Commit message"
git push origin master
```

So I created eGit(easy Git) to automate this. This is my workflow
now.

* Run `python egit.py RepoName username`
* Type in my credentials when prompted
* That's it!