Git | Tutorial
- cd and paste the folder path
- git config --global user.name "Chandan"
- git config --global user.email "imjunior471@gmail.com"
- touch .gitignore //will create gitignore file
- git init //initialize the git repository(empty)
- git add .
- git commit -m "initial commit"
- git status //show the status of project
- go to git hub website click on "SSH" and copy the link then
- git remote add origin "paste the link" + enter key
- git push origin master
Comments
Post a Comment