2 Matching Annotations
- Mar 2025
-
www.coursera.org www.coursera.org
-
try.github.io to download the cheat sheets and run through the tutorials.
Set up github folder with cheat sheet and other stuff in it.
-
"git add" moves changes from the working directory to the staging area. "git status" allows you to see the state of your working directory and the staged snapshot of your changes. "git commit" takes your staged snapshot of changes and commits them to the project. "git reset" undoes changes that you’ve made to the files in your working directory. "git log" enables you to browse previous changes to a project. "git branch" lets you create an isolated environment within your repository to make changes. "git checkout" lets you see and change existing branches. "git merge" lets you put everything back together again.
.init .add .status .commit
-