Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

github remote

echo "# HarryFoods" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin < repo url >
git push -u origin main
Comment

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
Comment

PREVIOUS NEXT
Code Example
Javascript :: loop javascript 
Javascript :: anonymous function javascript 
Javascript :: getting the value of pi in javascript 
Javascript :: get url of page in background script 
Javascript :: javascript search for words in sentence examples 
Javascript :: aes 256 file encryption node js 
Javascript :: system navigation bar react native 
Javascript :: command to start a new react app using vite 
Javascript :: javascript create an array 
Javascript :: The element.InnerHTML Property 
Javascript :: search through json for key 
Javascript :: jquery dynamic event binding 
Javascript :: number pattern js 
Javascript :: javascript change select element 
Javascript :: discord.js ban user 
Javascript :: react router dom props.history is undefined 
Javascript :: javascript remove object element 
Javascript :: settimeout method 
Javascript :: How to pass setInterval() into a Javascript class method 
Javascript :: import tippy react 
Javascript :: how to use for of in javascript 
Javascript :: type coercion 
Javascript :: simple id using javascrip math randomt 
Javascript :: npm set author name 
Javascript :: js falsy values 
Javascript :: axios get data from json file 
Javascript :: react native tab navigation header 
Javascript :: jquery if else 
Javascript :: playwright headless 
Javascript :: insert array as string google app scripts 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =