Git Basics, Branching & Merging, Remote Repositories, Pull Requests & Code Review, Branching Strategies
- Write Git commands to initialize a new Git repository and verify its status ?
- Write Git commands to add a file and create the first commit ?
- Write Git commands to display the commit history ?
- Write Git commands to check modified files in the repository ?
- Write Git commands to create a new branch and switch to it ?
- Write Git commands to create and switch to a branch using a single command ?
- Write Git commands to list all local branches ?
- Write Git commands to merge a feature branch into the main branch ?
- Write Git commands to delete a merged branch ?
- Write Git commands to add a remote GitHub repository ?
- Write Git commands to pull the latest changes from the remote repository ?
- Write Git commands to fetch remote changes without merging them ?
- Write Git commands to create a Pull Request workflow using Git ?
- Write Git commands to review commit differences before merging ?
- Write Git commands to resolve merge conflicts after merging branches ?
- Write Git commands to implement the Git Flow branching strategy by creating a release branch ?
- Write Git commands to simulate a collaborative software development workflow using feature branches, remote repositories, pull requests, code review, merging, and release branch creation ?
- Write Git commands to update a feature branch with the latest changes from the main branch ?
- Write Git commands to inspect commits available in a feature branch before creating a Pull Request ?
- Write Git commands to create a release branch from the develop branch and push it to the remote repository ?