Introduction

Git is an essential tool for modern software development, enabling seamless collaboration and efficient version control. In this guide, we’ll explore creating branches, pushing changes, setting upstream tracking, and working with remote repositories to enhance your Git workflow.


Creating a New Branch

Creating branches is a fundamental part of Git, allowing developers to isolate features, bug fixes, or experiments. Here’s how you can create and work with branches:

  1. Create a New Branch Locally:
    git branch branch-name
    
    • Creates a branch but keeps you on the current one.
  2. Create and Switch in One Command:
    git checkout -b branch-name
    
    • This is the most commonly used method.
  3. Check Your Branches:
    git branch
    
    • Displays all local branches, with * indicating the active one.
  4. Push the New Branch to the Remote:
    git push -u origin branch-name
    
    • Links the local branch with the remote repository for easier future pushes.

Understanding git push -u

The -u option (short for “set upstream”) links your local branch to a remote branch. This simplifies subsequent Git commands, as you can omit the remote and branch name:

  • First push with upstream tracking:
    git push -u origin branch-name
    
  • Future pushes and pulls:
    git push
    git pull
    

This is particularly useful when creating new branches or pulling remote branches for the first time.


Pushing Files to a Repository

Once you’ve added or modified files, pushing them to a repository involves these steps:

  1. Add Files to the Staging Area:
    git add file1 file2
    
  2. Commit the Changes:
    git commit -m "Describe your changes"
    
  3. Push the Changes to the Remote Repository:
    git push
    

For new branches, use git push -u origin branch-name to set up the upstream tracking.


Working with an Existing Branch

If you’re adding files to an existing branch in a repository, the workflow becomes even simpler:

git checkout branch-name
git add file1 file2
git commit -m "Describe your changes"
git push

Switching Between Branches

Easily switch between branches:

git checkout branch-name

Ensure you commit or stash changes before switching to avoid conflicts.


Best Practices for Branching and Collaboration

  • Create Separate Branches for each feature or bug fix.
  • Commit Frequently with meaningful messages.
  • Use Pull Requests (PRs) for code reviews and merging changes into the main branch.
  • Regularly sync with the remote repository using git pull to avoid conflicts.

Conclusion

By mastering Git commands like git branch, git checkout, and git push -u, you can streamline your development workflow and collaborate effectively with your team. With this guide, you’re well-equipped to navigate Git’s powerful branching and tracking capabilities.

To see the differences between branches in Git

To see the differences between branches in Git, you can use the git diff command. Below are several methods to view differences between branches.


1. View Differences Between Two Branches

You can compare two branches using:

git diff branch1 branch2
  • This shows what changes exist in branch2 that are not in branch1.

Example:

git diff main feature-branch
  • This shows what changes are in feature-branch compared to main.

2. Compare Current Branch with Another Branch

If you want to compare your current branch with another branch:

git diff branch-name

Example:

git diff feature-branch
  • Compares your current branch to feature-branch.

3. Compare a Branch with the Remote Version

If you want to see differences between a local branch and its remote counterpart:

git diff branch-name origin/branch-name

Example:

git diff feature-branch origin/feature-branch
  • Shows differences between your local and remote feature-branch.

4. Compare Only Specific Files or Directories

To narrow the comparison to specific files or directories, add the path:

git diff branch1 branch2 -- path/to/file

Example:

git diff main feature-branch -- src/app.js
  • Compares src/app.js between main and feature-branch.

5. View a Summary of Changes

If you don’t need the detailed diff but just want to see a summary:

git diff --stat branch1 branch2

Example:

git diff --stat main feature-branch
  • Outputs a summary of added, modified, and deleted files.

6. Compare Merged and Unmerged Changes

To see changes in a branch that haven’t been merged into another branch:

git diff branch1...branch2

Example:

git diff main...feature-branch
  • Shows changes in feature-branch that are not in main.

7. Using a GUI for Better Visualization

You can use Git GUI tools for an easier way to view differences:

  • GitHub Desktop
  • GitKraken
  • SourceTree
  • VSCode Git Extension

Example Using git log with Diff:

For a graphical log with differences, use:

git log --oneline --graph --decorate --branches

8. Visualize Differences with git difftool

If you have a diff tool like vimdiff, meld, or kdiff3 installed:

git difftool branch1 branch2

9. Compare Working Directory with a Branch

To see what changes are in your working directory compared to a branch:

git diff branch-name

Summary Table of Commands

Command Description
git diff branch1 branch2 Compare two branches.
git diff branch-name Compare current branch with another branch.
git diff --stat branch1 branch2 Show a summary of changes.
git diff branch1...branch2 Show changes in a branch not yet merged.
git difftool branch1 branch2 Use a visual tool to compare branches.

Practical Example:

You are on main and want to see what’s different in feature-branch:

git diff main feature-branch

This shows the line-by-line differences between main and feature-branch.