Open VikashKothary opened 5 years ago
#!/usr/bin/bash
# git_configure.sh
git config --global user.name "Vikash Kothary"
git config --global user.email "kothary.vikash@gmail.com"
git config --global color.ui auto
# Set git to use the credential memory cache to remember password
git config --global credential.helper cache
# Set the cache to timeout after 1 hour (setting is in seconds)
git config --global credential.helper 'cache --timeout=3600'
#!/usr/bin/bash
"""
git_create.sh
Creates a git repository and it's initial commit.
"""
github create [project-name]
git init [project-name]
git clone https://github.com/Vikash-Kothary/
git commit -m "Initial commit ([project-type])"