Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git initialize repository

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

initialize github repository

$git init
$git config --global user.email "your email"
$git config --global user.name "Your name"
$git remote add origin https://github.com/username/new_repo(Can be copied from github directly)
$git push -u origin master
Comment

Github Repo Initialization

echo "# REPO_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/userName/RepoName.git
git push -u origin main
Comment

PREVIOUS NEXT
Code Example
Shell :: gitaarles amsterdam 
Shell :: folder size in linux 
Shell :: create conda environment from yaml file 
Shell :: how to update git 
Shell :: google-chrome in ubuntu 
Shell :: docker container name 
Shell :: check size folder terminal 
Shell :: lines count linux 
Shell :: command to install PHP on Ubuntu 
Shell :: flutter : command not found 
Shell :: brew portkill 
Shell :: how to run .sh file in background linux 
Shell :: powershell convert to exe 
Shell :: cut tab linux 
Shell :: wget save file with different name 
Shell :: error: unknown command "neat" for "kubectl" 
Shell :: update linux ubuntu 
Shell :: change user linuxcommand ch 
Shell :: deleting remote branch in GitHub 
Shell :: change owner for folder and subfolders linux 
Shell :: grep not multiple patterns 
Shell :: pip upgrade all 
Shell :: linux get first line of file 
Shell :: gcloud set kubectl context 
Shell :: git log filter merge commits 
Shell :: change regolith terminal 
Shell :: how to install tar.xz file on ubuntu 
Shell :: docker remove unused 
Shell :: how to kill process ubuntu 
Shell :: how to install .sh file in ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =