Horje
init step way to create repository git Code Example
set up git repository
# 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
git init repo
git init
git add somefile
git commit -m "initial commit"
git remote add origin https://github.com/username/new_repo
git push -u origin master 
Source: kbroman.org
git init
cd /path/to/my/codebase
git init   
git add .    
git commit -m "my comment"   
init step way to create repository git
git configuration 




Shell

Related
how to set environment variables in linux Code Example how to set environment variables in linux Code Example
unity download linux Code Example unity download linux Code Example
add environment variable linux Code Example add environment variable linux Code Example
apache2 default url Code Example apache2 default url Code Example
apache2 ubuntu default page Code Example apache2 ubuntu default page Code Example

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