Introduction to Git. Innovation lab for UCSTaunggyi
Version Control and basic of DevOp Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. It become essential, because it help collaboration and manage archieve.
It is primarily used for source code management in software development, but it can be used to keep track of changes in any set of files.
The purpose of Git is to manage a project, or a set of files, as they change over time. Git stores this information in a data structure called a repository. A git repository contains, among other things, the following: A set of commit objects.
GitHub is a cloud-based hosting service that lets you manage Gitrepositories. If you have open-source projects that use Git, then GitHub is designed to help you better manage them.
Join GitHub · GitHubgithub.com › join
At the heart of GitHub is an open source version control system (VCS) called Git. Git is responsible for everything GitHub-related that happens locally on your computer.
To put your project up on GitHub, you'll need to create a repository for it to live in.
A fork is a copy of a repository. Forking a repository allows you to freely experiment with changes without affecting the original project.
change directory to your development directory. ("cd ~" cd to home directory in shell)
git config --global user.email “[email protected]”
git config --global user.name “
<your name>
”git clone [email protected]:akhlaing/ucs-tgi-innovation.git