Codepath

Git Workflow Recommendation

Introduction

This guide presents recommended Git workflows that will help you develop more efficiently and collaborate more effectively. By following these recommendations, you'll avoid common pitfalls, minimize merge conflicts, and maintain a clean, understandable project history.

🎥 Video: Git patterns and anti-patterns (20 mins) - Learn the patterns used by professional developers

Whether you're working independently or as part of a team, adopting a consistent Git workflow offers numerous benefits:

  • Consistency: Establish reliable patterns for development
  • Quality: Reduce errors and improve code quality through proper review processes
  • Collaboration: Make teamwork smoother with clear conventions
  • Maintainability: Create a project history that tells a clear story
  • Recovery: Easily recover from mistakes with a well-structured workflow

1. Creating a New GitHub Repository

You can create a new Git repository either locally or on GitHub first.

Creating a Repository on GitHub First

  1. Visit github.new (shortcut to create a new repository on GitHub)
  2. Fill in the repository details:
    • Repository name
    • Description (optional)
    • Public or private
    • Initialize with README (recommended for new projects)
    • Add .gitignore file (optional)
    • Choose a license (optional)
  3. Click "Create repository"

Creating a Repository Locally First

Alternatively, you can create a repository on your local machine and then push it to GitHub:

# Navigate to your project directory
$ cd my-project

# Initialize a new Git repository
$ git init
Initialized empty Git repository in /path/to/my-project/.git/

# Add files to the repository
$ git add .

# Make the first commit
$ git commit -m "Initial commit"
[main (root-commit) 1a2b3c4] Initial commit
 3 files changed, 25 insertions(+)
 create mode 100644 README.md
 create mode 100644 index.html
 create mode 100644 styles.css

After creating your repository locally, you'll need to...

  1. Create a repository on GitHub at github.new without any readme, .gitignore, or license.
  2. Connect it to your local repository:
# Then connect your local repository
$ git remote add origin https://github.com/username/repository-name.git

# Push your local repository to GitHub
$ git push -u origin main

🎥 Video: Creating a Git Repository (7 mins) - Step-by-step walkthrough of creating a repository

2. Cloning an Existing Repository

Cloning creates a local copy of a remote repository on your machine.

# Clone a repository using HTTPS
$ git clone https://github.com/username/repository.git

# Clone a repository using SSH (requires SSH key setup)
$ git clone git@github.com:username/repository.git

# Clone a specific branch
$ git clone -b branch-name https://github.com/username/repository.git

# Clone to a specific directory
$ git clone https://github.com/username/repository.git my-directory

Diagram: git clone

When you clone a repository, Git automatically:

  • Downloads all the files
  • Sets up the original repository as a remote called "origin"
  • Creates local branches tracking remote branches
  • Checks out the default branch (usually main or master)

💡 Tip: If the repository is large, you can use a shallow clone to speed things up: git clone --depth=1 https://github.com/username/repository.git

🎥 Video: Git Clone Command (8 mins) - How to clone repositories effectively

3. Tracking and Committing Changes

After modifying files in your repository, you need to track and commit those changes.

The Three States of Git Files

Files in a Git repository exist in one of three states:

  1. Modified: The file has been changed but not staged
  2. Staged: The file has been marked to be included in the next commit
  3. Committed: The file has been safely stored in the local database

Diagram: git file states

Staging Changes

Use git add to stage files for the next commit:

# Stage a specific file
$ git add filename.js

# Stage all files in the current directory
$ git add .

# Stage all changes (including deleted files)
$ git add -A

# Interactively stage parts of files
$ git add -p

Committing Changes

After staging your changes, commit them with a descriptive message:

# Commit with a message
$ git commit -m "Add user authentication feature"
[main a1b2c3d] Add user authentication feature
 2 files changed, 35 insertions(+), 5 deletions(-)

# Commit and skip the staging area (only works for tracked files)
$ git commit -am "Fix typo in README"
[main b2c3d4e] Fix typo in README
 1 file changed, 1 insertion(+), 1 deletion(-)

# Subsequent commits
$ git commit -m "Add login form validation"
[main d4e5f6g] Add login form validation
 1 file changed, 10 insertions(+), 1 deletion(-)

$ git commit -m "Fix navbar"
[main e5f6g7h] Fix navbar
 1 file changed, 1 insertion(+), 1 deletion(-)

$ git commit -m "Add user auth"
[main f6g7h8i] Add user auth
 1 file changed, 10 insertions(+), 1 deletion(-)

Diagram: git commit

⚠️ Best Practice: Write clear, descriptive commit messages that explain why a change was made, not just what was changed.

🎥 Video: Git Add & Commit Tutorial (10 mins) - Detailed explanation of tracking and committing

4. Pushing Changes

After committing changes locally, you need to push them to the remote repository to share them with others.

# Push commits to the remote repository
$ git push origin main

# Push all branches to the remote repository
$ git push --all origin

# Force push (use with caution!)
$ git push -f origin main

Diagram: git push

⚠️ Warning: Force pushing (git push -f) overwrites the remote branch with your local branch. This can erase others' commits! Only use it when absolutely necessary and when you understand the consequences.

🎥 Video: Git Push Command Explained (7 mins) - Understanding how to push changes to remote repositories

5. Pulling Updates

When others have pushed changes to the remote repository, you'll need to pull those changes to keep your local repository up to date.

# Pull changes from the remote repository
$ git pull origin main

# Pull changes and rebase instead of merge
$ git pull --rebase origin main

# Fetch changes without automatically merging
$ git fetch origin

Diagram: git pull

The difference between git pull and git fetch:

  • git pull fetches changes and automatically merges them into your current branch
  • git fetch only downloads the changes without integrating them, giving you a chance to review before merging

💡 Tip: Get in the habit of pulling changes before you start working each day to avoid merge conflicts.

🎥 Video: Git Pull vs Fetch (8 mins) - Understanding the difference between pull and fetch

6. Checking Repository Status

Regularly checking the status of your repository helps you understand what changes have been made and what needs to be committed.

# Check the status of your repository
$ git status
On branch main
Your branch is up to date with 'origin/main'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   src/components/Button.js

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        src/components/Modal.js

# Check short status
$ git status -s
 M src/components/Button.js
?? src/components/Modal.js

💡 Tip: In the short status output, M means modified, A means added, D means deleted, and ?? means untracked.

Other useful status commands:

# View commit history
$ git log

# View commit history with graph
$ git log --graph --oneline --all

# View changes between working directory and staging area
$ git diff

# View changes between staging area and last commit
$ git diff --staged

🎥 Video: Git Status & Log Commands (6 mins) - Learn to check the status of your repository effectively

7. Basic Git Workflow for Solo Work

When working alone on a project, you can follow this simple workflow:

Diagram: git workflow for solo work

Step-by-step:

# 1. Start by pulling the latest changes (if repository already exists)
$ git pull origin main

# 2. Create or modify files
# (Work on your project)

# 3. Check the status of your changes
$ git status

# 4. Stage your changes
$ git add .

# 5. Commit your changes with a descriptive message
$ git commit -m "Login form validation"

# 6. Push your changes to the remote repository
$ git push origin main

# 7. Repeat steps 2-6 as you continue working

Diagram: Git Workflow for Solo Work

💡 Tip: Even when working alone, commit frequently with meaningful messages. This creates a detailed history that helps you understand your own development process later.

🎥 Video: Git Workflow for Solo Developers (15 mins) - A complete workflow demonstration for solo projects

8. Basic Git Workflow for Group Work

When collaborating with others, you'll need a more robust workflow to avoid conflicts:

Diagram: git workflow for group work

Step-by-step:

# 1. Always start by pulling the latest changes
$ git pull origin main

# 2. Create a feature branch for your work
$ git checkout -b feature/user-authentication

# 3. Create or modify files
# (Work on your feature)

# 4. Check the status of your changes
$ git status

# 5. Stage your changes
$ git add .

# 6. Commit your changes with a descriptive message
$ git commit -m "Implement login form validation"

# 7. Push your feature branch to the remote repository
$ git push -u origin feature/user-authentication

# 8. Create a Pull Request on GitHub

# 9. After the PR is approved and merged, switch back to main
$ git checkout main

# 10. Pull the latest changes (including your merged PR)
$ git pull origin main

# 11. Repeat steps 2-10 for each new feature or bug fix

Diagram: Git Workflow for Group Work

⚠️ Caution: Never commit directly to the main branch in a collaborative project. Always create feature branches for your work.

🎥 Video: Git & GitHub Workflow for Teams (18 mins) - Learn how to effectively collaborate using Git and GitHub

9. Best Practices

9.1 Meaningful Commits

Commit messages should clearly explain why a change was made, not just what was changed.

# ❌ Bad commit message
$ git commit -m "Fix stuff"

# ✅ Good commit message
$ git commit -m "Fix navbar overflow on mobile screens"

Guidelines for good commit messages:

  • Use the imperative mood ("Add feature" not "Added feature")
  • Keep the first line under 50 characters
  • Provide more details in the body if necessary (separated by a blank line)
  • Reference issue numbers if applicable

Example of a comprehensive commit message:

$ git commit -m "Add password strength indicator
 
This adds a visual indicator that shows password strength as users type.
Strength is calculated based on length, complexity, and common patterns.

Fixes #123"

9.2 Atomic Commits

Each commit should represent a single logical change. This makes it easier to:

  • Understand the history
  • Revert specific changes
  • Cherry-pick commits to other branches

Diagram: Atomic Commits

Guidelines for atomic commits:

  • Each commit should do exactly one thing
  • If you can't summarize the changes in one sentence, it's probably not atomic
  • Commit early and often while working, then use interactive rebase to clean up before pushing

9.3 Regular Pulls

Regularly pulling changes helps avoid large merge conflicts.

# Start each work session with a pull
$ git pull origin main

# Pull before creating a new feature branch
$ git pull origin main
$ git checkout -b feature/new-feature

# Pull regularly during the day
$ git pull origin main

💡 Tip: If you're working on a feature branch and need to incorporate changes from main, you can use:

git checkout feature/my-feature
git pull origin main

🎥 Video: Git Best Practices (15 mins) - Learn professional Git habits and best practices

References

Video Resources

Fork me on GitHub