Git Command Projects
Below shows a image of a new ai-startup-website repository being created.
Shows the cloning command of the previously created repos.
On completeing the previous steps, A index.html was created inside the repository root folder and the default branch was set to main.
git status: To determine the status on the changes made in the current branch (main)
git add . : To add the changes in preparation for commit.
git commit: To commit these changesto the branch.
git push: Push changes to the main branch of the remote repository.
Creating and switching to the update-navigation branch using the git checkout command.

Creating and switching to the add-contact-info branch using the git checkout command and making changes respectively inside the index.html file

The image shows the merge requests from the update-navigation and add-contact-info branches to merge changes into the main branch on GitHub.



