# git help **Repository Path**: hsyh/git-help ## Basic Information - **Project Name**: git help - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-10-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #git help ###Command line instructions #####Git global setup > git config --global user.name "username" > > git config --global user.email "username@email.com" #####Create a new repository > git clone git@git.website.com:username/example.git > > ***or*** git clone https://git.website.com:username/example.git > > cd example > > touch README.md > > git add README.md > > git commit -m "add README" > > git push -u origin master #####Existing folder or Git repository > cd existing_folder > > git init > > git remote add origin git@git.website.com:username/example.git > > ***or*** git clone https://git.website.com:username/example.git > > git add . > > git commit > > git push -u origin master