how to initiate git repository locally code example

Example 1: 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 [email protected]:username/new_repo #ssh
# Now push
git push -u origin master

Example 2: upload new repo to git

echo "# Can-I-Shop-2" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/username/projectname.git
git push -u origin master

Example 3: git init

cd /path/to/my/codebase
git init   
git add .    
git commit -m "my comment"

Example 4: github create repository command line

git **create -d "\<commit name\>"**

Tags:

Misc Example