Git-Basics-For-Everyone

Git commands that can help you!


...javascript echo "# blabla" >> README.md ... Related to Gity

Step:1 Copy the link for cloning the repository in your local machine



Step:2 Use git clone command to clone the repository



Step:3 Go inside your cloned repository



Step:4 Make changes to any file,or create some new file or drag and drop any file of size <300MB



Step:5 Use git add FileName ,to move the file to staging area



Step:6 Use status to see if your file is added to the staging area if yes then use git commit -m "write here what changes you have maded or what new file you have created in the local repository"



Step:7 Use git push to push the changes in your remote repository



Step:8 Use these to set the timer to input credentials for verification again after a long period of time,after setting this you don't need to input credentials again everytime you push



#keeping a fork updated from the master branch git remote add upstream "link of the upstream master " git fetch upstream git pull upstream master