Summary of Git Command
Get all sources from remote git create workspace or project folder. use the " git init "command in the Project folder. git remote add origin https://....../xxx.git git pull origin master When committing to a remote location how to set global config in git - git config --global user.name "steve.lee" - git config --global user.email "steve.lee@example.com" git add [filename/ . ] git commit -m "message" push -u origin master Summary of frequently used commands in Git git init = create a git git clone git_path = acquiring code from somewhere git checkout branch_name = select a branch git checkout -t remote_path/branch_name = select a remote branch git branch branch_name = create a branch git branch -r = list of a remote branch git branch -a = list of a local branch git branch -m branch_name change_branch_name = change a branch name git branch -d branch_name = delete branch git push remote_name -- delete branch_name = delete remote branch ex