Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

github remote

/* 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
 
PREVIOUS NEXT
Tagged: #github #remote
ADD COMMENT
Topic
Name
5+4 =