Git Commands
Hi, I am Full Stack Developer. I can build web application, android application, desktop application. My core programming language is JavaScript.
New Project git initialization
git initFile Changing to update git stage
git add .Git Commit
git commit -m "Frist Commit"Git Push
git push -u origin mainor
git push
Create a new Branch and Change another branch
git checkout -b "Staging"git push -u origin Stagingor
git pushAfter git clone and new project / add git url link
git remote add origin urlGit URL check
git remote -v

