https://github.com/kamath/git-clone
A simple Python implementation of the git clone command that eliminates the addition of "https://github.com" before the repository command
https://github.com/kamath/git-clone
Last synced: 5 months ago
JSON representation
A simple Python implementation of the git clone command that eliminates the addition of "https://github.com" before the repository command
- Host: GitHub
- URL: https://github.com/kamath/git-clone
- Owner: kamath
- Created: 2016-02-09T04:14:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-09T04:18:14.000Z (almost 10 years ago)
- Last Synced: 2025-02-28T16:53:21.444Z (10 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-clone
A simple Python implementation of the git clone command that eliminates the addition of "https://github.com" before the repository command
To use, you can add the file to your PATH variable, but more importantly you use the following commands:
##git clone http://github.com/x/x.github.io = python git.py x [what you want to name the folder (optional)]
For example,
git clone http://github.com/andykamath/andykamath.github.io andykamath
would be transferred to
python git.py andykamath
##git clone http://github.com/x/a = python git.py x/a [what you want to name the folder (optional)]
git clone http://github.com/andykamath/git-clone
would be transferred to
python git.py andykamath/git-clone