reading-notes

Revisions and the Cloud

We use git for version control of our code. This way, we can track changes, have snapshots of our work, and collaborate effectively with others.

Notes

Commit Flow

To commit and push:

git status git add .

git commit -m “my commit message: git push origin main

To clone a remote repo

git clone https://github.com/link-to-repo

To pull from remote repo

git pull s

Collaboration using GitHub requires the use of creating and managing Pull Requests. Collaboration Workflow: Create a topic branch from master

What I’d like to learn more about

Go Back to Home