Git Hub Notes
Git Hub Notes
name=SJ-Harshith
IT IS :-popular
GITHUB:-It is a website where developer can upload ,store and manage their code using git.
Create a new repository (creating a new project and creating new folder for that project) in github
After git setup we need to do git configure(it means we are saying to git in which account u are changing
the code)
We will open vscode
Create a folder ,open the folder , open terminal press + to start the terminal
IN TERMINAL WE CAN CHECK GIT VERSION
git --version
cd cloned folder name (change in directory ,now we are changing directory from local folder to the
cloned folder )
in order to know in which folder we use using
It is saying that whatever the code in this cloned folder is same as the code present in git hub
when we made changes in the code of cloned folder ,it is of modified stage,if we do git status it shows
modified and the folder in which it is modified
if we create a new file in cloned folder it is considered as untracked files.it means git does know anything
about it
git add .
To make modified file and untracked file in staged file we use for all the files at