WHAT'S NEW?
Loading...

Basic Git Bash Commands

If you know what git is then go ahead and if you don't know what it is, I will make  a post on that too.
Identity
git config --global user.name "User Name"
git config --global user.email user@yourdomain.com
Settings
git config --list
View Identity
git config user.name
git config user.email
Help
git help config
Initializing a Repository in Current Directory
git init
To traverse from one directory to another, linux based commands are to be used.
Cloning a Repository
git clone clone_url
Checking status
git status
Add file for tracking
git add filename
Commit Changes
git commit -m 'comments about the commit or description of the commit'

0 comments:

Post a Comment