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.
- Host: GitHub
- URL: https://github.com/astronomersiva/egit
- Owner: astronomersiva
- Created: 2015-04-28T13:32:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-01T17:11:05.000Z (about 9 years ago)
- Last Synced: 2025-01-21T20:49:08.346Z (3 months ago)
- Language: Python
- Size: 117 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.MD
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!