Git is widely used open source software for distributed version control of software. Read here how the tool works under Windows..
Git is a version control system that was created by Linux inventor Linus Torvalds. To work with Git, you need the program of the same name - which is also available for Windows. You can then use a Git client to upload and manage your software code on platforms such as GitHub or GitLab. In this tipps + tricks article, we explain how to install and set up Git on Windows.
Follow our step-by-step instructions or take a look at the brief instructions .
Open a terminal with Git Bash and enter the following commands to use your GitHub account:
git config --global user.name "github_username" git config --global user.email "email_address"
git config --global user.name "github_username"
git config --global user.email "email_address"
If you want to clone a repository (e.g. download it locally to your PC), enter the following command: All other commands can be found in the detailed documentation at https://git-scm.com/docs . git clone my_project.git
git clone my_project.git