#JavaScript Style Guide https://github.com/airbnb/javascript
#GIT Commands
- Set your name for when you contribute to the project.
- Set your email for when you contribute to the project.
- Run this command to update the pointer to the remote repository.
- Run this command to list any changes made to the remote repository.
- Displays a list of modified files and if any have been added to a commit.
- Add the specified file to the commit list.
- Use
-Ato add all the modified/added files to the commit.
- Creates a commit with the files specified and a message to go along.
- Push your committed changes up to the master branch.
- Lists all the branches found on the local and remote repo.
- Will switch to the branch specified and create it if not found.
- Pushes committed changes onto the remote server under the specified branch.
- This will copy a file from the specified branch to the current working branch.
- Deletes the branch on the remote repository.
- Delete branches from local repo which no longer exist on the remote repo.
- Deletes the branch specified even if changes were made.
- use
-dto check for changes before deleting.
- Copies a remote repository. Ensure the URL ends with a git extension.
- Discard changes to the local file.
- Discard all changes made to the local repo.
- Shortcut that automatically adds all modified files and a commit message.
- If created new files must use
git add -Afirst.