Horje
or create a new repository on the command line 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
git create new repository
git clone https://github.com/myname/myapp.git
cd myapp
touch README.md
git add README.md
git commit -m "adds README"
git push -u origin master
create a new repository on the command line
echo "# oop_labs" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Nichiporchik-Nastya/oop_labs.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
git schannel Code Example git schannel Code Example
flask db upgrade add new not nullable column Code Example flask db upgrade add new not nullable column Code Example
git always asks for ssh password Code Example git always asks for ssh password Code Example
Run Apache as Separate user and group Code Example Run Apache as Separate user and group Code Example
linux temperatur monitor Code Example linux temperatur monitor Code Example

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