Collaboration

🤝 Scenario

You’re joining a team project hosted on GitHub.

1 Clone the Repository

git clone https://github.com/username/project.git

3 Pull the Latest Changes

Before working, always pull the latest updates:

git pull

4 Make Changes, Add, and Commit

Edit a file, then:

git add .
git commit -m "Update documentation"

5 Push Your Changes

git push