Horje
how to set up a git repo on terminal Code Example
how to set up a git repo on terminal
# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin git@github.com:username/new_repo #ssh
# Now push
git push -u origin master
Source: kbroman.org




Shell

Related
how to open matlab in ubuntu Code Example how to open matlab in ubuntu Code Example
kill :80 port Code Example kill :80 port Code Example
ubuntu gpg 2 Code Example ubuntu gpg 2 Code Example
code blocks download for debian Code Example code blocks download for debian Code Example
ln phpmyadmin Code Example ln phpmyadmin Code Example

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