Horje
initialize github repository Code Example
initialize github repository
$git init
$git config --global user.email "your email"
$git config --global user.name "Your name"
$git remote add origin https://github.com/username/new_repo(Can be copied from github directly)
$git push -u origin master
Source: kbroman.org
create new repository on the command line
git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master




Shell

Related
how to generate keystore file for cordova Code Example how to generate keystore file for cordova Code Example
npm default init Code Example npm default init Code Example
docker attach to running container Code Example docker attach to running container Code Example
npm install in dev mode Code Example npm install in dev mode Code Example
zip folder linux Code Example zip folder linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14