Github
Github
Atul Phad
Introduction
Git is a version control system.
git clone <remote-repo-address>: copy the entire repository from a remote server
to remote directory. You can also use it to copy local repositories.
git add <file.txt>: add a single file or multiple files and folders to the staging area.
git merge <branch-name>: after resolving merge conflicts the command blends
selected branch into the current branch.