This is my very repository with the Kekambas 142 cohort.
git initto create a new repositorygit add <filename>orgit add .to add files to staged changesgit commit -m "Your Message Here"to commit (or take snapshot)git remote add <remote_name> <remote_URL>to add remote connection to GitHub<remote_name>will usually beorigin<remote_url>is the URL to GitHub Repositorygit push <remote_name> <branch_name>to send commits to Github -<remote_name>will usually beorigin-<branch_name>will usually bemain- You can add
-uflag to command to set up tracking
- Create a new branch
git checkout -b <branch-name>- Use
git checkout <branch_name>to switch branches - Use
git branchto get a list of existing branches
- Use