- Use keyboard shortcuts to move this browser window to the left side of your screen and your terminal in the top right corner.
- Fork this repository.
- Clone your copy of the repository to your local machine.
- Open the repository in VS Code. Use a keyboard shortcut to move VS Code to the bottom right corner of your screen.
- Create a new file in that directory called
github_cfu.md
. Add some notes about all of the git commands you know in that file. - Add and commit your work, then push those changes to GitHub.
- Now, show how you would remove the remote origin.
- Create a new remote repository in GitHub and connect your local repository to that one.
git push
- send work from local repo to remote repogit add <filename>
- add file to staging areagit commit -m "message"
- transfers file from staging area to be saved and viewed latergit clone <SSH local code here>
- transfers remote reop to your local repo in a designated dirgit status
- checks where we are in the git workflowgit diff
- shows the actual changes made