Horje
new repository Code Example
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
create a new repository on the command line
echo "# sigpef_api" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Gnaore/sigpef_api.git
git push -u origin main
Source: github.com
new repository
echo "# githubBasicAlgorithms" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Polsa96/githubBasicAlgorithms.git
git push -u origin main
Source: github.com
or create a new repository on the command line
echo "# Your Repo name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin "your repo url"
git push -u origin main
Source: github.com




Shell

Related
pip install scikit learn Code Example pip install scikit learn Code Example
how to install atom on manjaro Code Example how to install atom on manjaro Code Example
copy partition to another disk linux Code Example copy partition to another disk linux Code Example
vim-gnome has no installation candidate Code Example vim-gnome has no installation candidate Code Example
makefile variable for windows and linux Code Example makefile variable for windows and linux Code Example

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