1.How does Git’s object model work, and what are the types of objects it uses?
2.How does Git handle conflicts during a merge?
3.Explain the significance of GitHub’s fork and pull request workflow.
4.What are GitHub Pages, and how can they be used to host websites?
1.Git uses a simple yet powerful object model where everything is stored as an object: blobs, trees, commits, and tags. Blobs are content of files, trees represent directories, commits represent snapshots, and tags are named references to commits.
2.When Git detects conflicting changes between branches, it pauses the merge process and marks the conflicting areas in the affected files.
3.A pull request is a way to propose changes from your fork back to the original repository, facilitating collaboration and code review.
4.GitHub Pages is a feature that allows you to host static websites directly from a GitHub repository.
Ganesh Pasala is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1.Git uses a simple yet powerful object model where everything is stored as an object: blobs, trees, commits, and tags. Blobs are content of files, trees represent directories, commits represent snapshots, and tags are named references to commits.
2.When Git detects conflicting changes between branches, it pauses the merge process and marks the conflicting areas in the affected files.
3.A pull request is a way to propose changes from your fork back to the original repository, facilitating collaboration and code review.
4.GitHub Pages is a feature that allows you to host static websites directly from a GitHub repository.
Ganesh Pasala is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.