This repo shows how to start with Git and Github.
This repo shows how to begin with Git and Github.
Git is a version control system that lets you manage and keep track of your source code history. It is designed to handle everything from small to very large projects with speed and efficiency.
GitHub is a cloud-based hosting service that lets you manage Git repositories. If you have open-source projects that use Git, then GitHub is designed to help you better manage them.
git config --global user.name "user_name" (your Github account user_name)
git config --global user.email "email@mail.com" (your Github account mailId)
Open git bash or terminal and then move to that folder and type.
git init
Now your folder is initialized with git.
git status
git add .
or
git add -A
git commit -m "commit message"
git remote add origin https://github.com/imPGupta/learn_git
git push origin master
Remove Error If Occurs
git clone https://github.com/imPGupta/learn_git
git pull origin master