Understanding GIT - Lab 1
Date: 28th May 2021
Task:
Create a repository named ‘ISS_Lab_1’.
Add one file ‘name.txt’ with your name in it.
Use git add to add that file to the repository.
Use git commit to commit your change. Use a meaningful message like "Added information about YOUR NAME HERE."
Use git push to send your change to the primary repository.
Look online to see if your change has been pushed.
Open the github repository using your favourite browser and add the file ‘name.txt’ again but named as ‘name2.txt’
Then use git pull to get the change into your repository. Verify that you have the new file.
Use git branch to create a new branch named ‘other_details’.
Now create a new file named ‘otherDetails.txt’ and add the following:
Roll: Your_roll_no
Branch: Your_branch_at_IIITH
Use git add to add that file to the repository.
Use git commit to commit your change.
Use git push to send your change to the primary repository.
Look online to see if your change has been pushed.
Use git checkout to switch to the branch we had created earlier ‘other_details’.
Now create a new file named ‘otherDetails.txt’ and add the following (Note: The order is different from the previous file):
Branch: Your_branch_at_IIITH
Roll: Your_roll_no
Use git add to add that file to the repository.
Use git commit to commit your change.
Use git push to send your change to the ‘other_details’ branch of the primary repository.
Look online to see if your change has been pushed.
Now create a pull request to merge the branch ‘other_details’ to ‘master’.
You will notice that this will result in a merge conflict.
Resolve the merge conflict.
Merge the pull request.
Last updated
Was this helpful?