Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

github create repo

git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/<your username>/<repository>.git
git push -u origin main
Comment

create a new repository on Github

echo "# visitor_management" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M Master
git remote add origin https://github.com/aymenit2008/visitor_management.git
git push -u origin Master
Comment

create a new github repository

echo "# asiance_data_mobile" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Javlon002/asiance_data_mobile.git
git push -u origin main
Comment

create git repo

echo "# MachineLearning" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/ruChikati/MachineLearning.git
git push -u origin main
Comment

git create github repo

git init
git add .
git commit -m 'Initial commit'
gh repo create # => With the new GitHub CLI
Comment

GIT: create repo

echo "# Aadidess-cursos-FrontEnd-Web" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/cenergon/Aadidess-cursos-FrontEnd-Web.git
git push -u origin main
Comment

Create new GitHub Repo

# Navigate to root directory

# initialize
git init -b main

# stage and commit changes
git add . && git commit -m "initial commit"

# create new repository on GitHub using the GitHub CLI interface
gh repo create
# Follow prompts and instructions
Comment

github new repository

echo "# language-identification" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/fellow-coder/language-identification.git
git push -u origin main
Comment

git, repository, new repository

echo "# EasyBank" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/RIDUMATICS/EasyBank.git
git push -u origin main
Comment

how to create a github repo

echo "# ANDERSON" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Anderson68-chale/ANDERSON.git
git push -u origin main
Comment

create-new-github-repo

echo "# awesome-site" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/OmarFSarkar/awesome-site.git
git push -u origin main
Comment

git hub new repo

echo "# group-project" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Demandtech/group-project.git
git push -u origin main
Comment

how to create a github repo

git remote add origin https://github.com/Anderson68-chale/ANDERSON.git
git branch -M main
git push -u origin main
Comment

github new repo

echo "# wp-rest-api-example" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/OmarFSarkar/wp-rest-api-example.git
git push -u origin main
Comment

Create github repo in command line

echo "# project name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/User/repo
git push -u origin main
Comment

create github repository

echo "# megamau" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:user_name/project_name.git
git push -u origin main
Comment

PREVIOUS NEXT
Code Example
Shell :: Flutter plugin not installed; this adds Flutter specific functionality. 
Shell :: how to silence operation not permitted 
Shell :: edit a file linux 
Shell :: git change author of last 2 commits 
Shell :: git create local branch 
Shell :: instaling composer linux 
Shell :: get docker image from docker hub 
Shell :: git gui 
Shell :: aws s3 ls wildcard 
Shell :: linux alternatives to tree 
Shell :: how to get visual studio code on a raspberry pi 4 
Shell :: conda update with environment from yml file 
Shell :: ubuntu gui manager 
Shell :: create new remote branch 
Shell :: correct git commit message 
Shell :: linux set environment 
Shell :: how to push to new branch in github 
Shell :: how to install docker compose on windows 
Shell :: github branch to master 
Shell :: git bash in cmd 
Shell :: install insomnia in ubuntu 
Shell :: set up ssh for github 
Shell :: filezilla Directory /var/lib/docker: permission denied 
Shell :: how to chanbge port number on centos8 
Shell :: upload git repository to github 
Shell :: list of created ssh port forwarding 
Shell :: how to make makefile 
Shell :: how to install windows sdk 
Shell :: sudo gem install cocoapods-deintegrate cocoapods-clean 
Shell :: how to create a branch in git 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =