/* this one use to add master folder to github remote, not main folder which introduces later in github */ git init git add . ( " . " for to add all files) git commit -m "first commit" git remote add origin < repo url > git push -u origin master