git config –global user.name "Your Name"
git config –global user.email "your.email@example.com"
git clone <repository>git pull It makes your local branch catch up to the latest changes in the corresponding remote branchgit remote add origin <repository url>git merge <branch name>/commit hash if the merge requires conflict resolution, use this command to abort: git merge –abortBack to index