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

git create github repo

git init
git add .
git commit -m 'Initial commit'
gh repo create # => With the new GitHub CLI
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

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 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 :: git rename a local branch 
Shell :: delete all feature branches 
Shell :: Enable-Migrations 
Shell :: rmdir multiple directories 
Shell :: extract a tar file in linux 
Shell :: curl trust self signed certificate 
Shell :: generate table of content in readme.md 
Shell :: sudo-get update 
Shell :: Add a Remote Repository in git command 
Shell :: How to use alias in Linux bash 
Shell :: reload terminal mac zsh 
Shell :: linux kali download 
Shell :: commit your changes 
Shell :: create file from terminal using cat 
Shell :: sed insert multiple lines after match 
Shell :: how to install face_recognition with conda 
Shell :: copy a file from home directory to other directory in linux 
Shell :: failed: Invalid argument 
Shell :: download file ssh 
Shell :: install kubernetes ubuntu 20.04 
Shell :: rails db:rollback 
Shell :: uninstall all pip packages anaconda 
Shell :: linux distributions command line 
Shell :: instaling ansible on ubuntu linux 
Shell :: git pull and git fetch 
Shell :: install gitlab runner 
Shell :: cordova could not install from "android" as it does not contain a package.json file. 
Shell :: ubuntu 20.4 uninstall cloud image 
Shell :: pom xml dependency cannot resolve 
Shell :: how to pass multiple hosts to ansible adhoc command? 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =