Astrological Approach to Leadership · CodeAmber

How to Use Git and GitHub for Version Control: From Commit to Pull Request

How to Use Git and GitHub for Version Control: From Commit to Pull Request

Master the essential workflow of modern software development by learning how to track changes locally and collaborate with others via a remote repository.

What You'll Need

Steps

Step 1: Initialize Your Repository

Navigate to your project folder in the terminal and run 'git init' to create a local Git repository. This initializes the .git directory, allowing Git to begin tracking your file changes.

Step 2: Stage and Commit Changes

Use 'git add .' to move your current changes into the staging area. Once staged, execute 'git commit -m "your descriptive message"' to create a permanent snapshot of your code in the version history.

Step 3: Connect to GitHub

Create a new repository on GitHub and copy the remote URL. Link your local project to the cloud by running 'git remote add origin [URL]', then push your initial code using 'git push -u origin main'.

Step 4: Create a Feature Branch

Avoid making direct changes to the main branch to maintain stability. Use 'git checkout -b feature-name' to create a new branch, allowing you to develop new functionality in isolation.

Step 5: Push the Branch to Remote

After committing your updates on the feature branch, upload them to GitHub using 'git push origin feature-name'. This makes your local branch available for review by other collaborators.

Step 6: Open a Pull Request

Navigate to your repository on GitHub and select the 'Compare & pull request' button. Provide a clear summary of your changes and assign reviewers to ensure the code meets project standards before merging.

Step 7: Merge and Cleanup

Once the Pull Request is approved, merge it into the main branch via the GitHub interface. Locally, switch back to the main branch using 'git checkout main' and run 'git pull' to synchronize your local environment.

Expert Tips

See also

Original resource: Visit the source site