diff --git a/solution.txt b/solution.txt index 9ca84a4..49b2ed0 100644 --- a/solution.txt +++ b/solution.txt @@ -1,7 +1,7 @@ -1. A commit is a snapshot of changes in the repository. -2. A branch is a separate line of development in the repository. -3. A pull request is a request to merge changes from one branch to another. -4. You initialize a new Git repository with 'git init'. -5. You clone a repository from GitHub with 'git clone '. -6. You stage changes for a commit with 'git add '. -7. You push changes to a remote repository with 'git push'. \ No newline at end of file +1.A commit is like a snapshot of the current status or condition of a repsository at a specific point in time. +2.A branch is like a separate path within your project that allows you to work on changes without affecting the main codebase. +3.A pull request is used to propose changes form one branch to another, typically from a feature branch to a main branch. +4.You can initialise a new repository by running the command "git init". +5.You can clone the repository by using the command "git clone (to stage individual changes)". +7.You can push changes to a remote repository by using "git push origin " or "git push". \ No newline at end of file