Git Notes
Clone a Repository git config –global user.name <your-email-address> git config –global user.email <your-email-address> Make sure the destination Git Repository folder does not already exist git clone https://github.com/…/.git Sync Repository git status git add . git commit -m “<description>” git push -u origin master View Remote Branches git remote -v git branch -a -vv Add, name […]
Read More Git Notes