Closed dimitarstoyanov95 closed 1 month ago
Answer these questions by modifying this file and adding your answer bellow the question. Use ChatGPT
What is the difference between Git and Github
What are the basic commands of git to create modify commit and push changes to a branch.
How does git stash work, and in what scenarios would it be useful?
Explain the difference between git fetch and git pull.
READ AND MARK TICKET AS DONE
Initialize a Git repository: git init // Initializes a directory/file to be used as a repository
Initialize a Git repository: git clone // git clone branch-ssh-key to clone the correct repository from Github
Push changes to a remote repository: git push origin branch-name // git push is used most of the time
Create a new branch: git checkout -b new-branch-name // This is to create and check it out at the same time
Learn the basic concepts of what Git and Github are.
Objectives:
1 - Watch these videos: Git vs. GitHub: What's the difference? Git It? How to use Git and Github
Short tutorial: Git Tutorial For Dummies
2 - Answer the questions bellow in the comment section.