0% found this document useful (0 votes)
19 views1 page

Git Workflow for Project Updates

This document provides a step-by-step guide for using Git with a repository. It includes instructions for cloning a repository, pulling the latest changes, making modifications, and pushing updates to GitHub. The process emphasizes daily updates and proper commit messages.

Uploaded by

neha.palvi24
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Git Workflow for Project Updates

This document provides a step-by-step guide for using Git with a repository. It includes instructions for cloning a repository, pulling the latest changes, making modifications, and pushing updates to GitHub. The process emphasizes daily updates and proper commit messages.

Uploaded by

neha.palvi24
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

# Step 1: Clone (only once)

git clone <repo-url>

# Step 2: Work inside the folder


cd project-folder

# Step 3: Pull latest changes (do this daily)


git pull origin master

# Step 4: Make changes to your files

# Step 5: Add and commit changes


git add .
git commit -m "Added fetch_user function"

# Step 6: Push to GitHub


git push origin master

You might also like