Version Control
Git: Moving ahead
Git: Moving ahead
  • Group 1
    • Resolving Merge Conflict
      • Create master
      • Create a branch
      • Merge them
  • Group 2
    • Branching Demo
      • Create issue53 branch
      • Commit a change
      • Check out master
      • Create a hotfix
      • Merge Hotfix
      • Delete the hotfix
      • Switch back to issue 53
  • Group 3
    • Adding Collaborators
      • Send invite
      • Accept Invite
Powered by GitBook
On this page
  1. Group 1
  2. Resolving Merge Conflict

Create master

Create master

Let us create a repo with initial content in the master and commit the same

git init
echo "some content" >> code.txt
git add .
 git commit -m "initial"
PreviousResolving Merge ConflictNextCreate a branch

Last updated 2 years ago