Github is something that is being used widely in almost all IT companies. Git is the free and open source distributed version control system that's responsible for everything GitHub related that happens locally on your computer. We can now integrate with multiple tools. Here are some tutorials that are worth watching and to learn if you are new to Github. In this video, right from installation, to some live project. There very few commands that you need to know if you are working in a command line. Here are some of the widely used commands.
for installation on Windows, Linux, Mac and Solaris - Download link
Configuring user information used across all local repositories
git config --global user.name “[firstname lastname]”
set a name that is identifiable for credit when reviewing version history.
git config --global user.email “[valid-email]”
set an email address that will be associated with each history marker.
git config --global color.ui auto
set automatic command line coloring for Git for easy reviewing.
Configuring user information, initializing and cloning repositories
git init
initialize an existing directory as a Git repository.
git clone [url]
retrieve an entire repository from a hosted location via URL.
I will be updating the part 2 in my next blog post. Meanwhile, check out the below video.
No comments:
Post a Comment