Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

set up git repository

# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin git@github.com:username/new_repo #ssh
# Now push
git push -u origin master
Comment

PREVIOUS NEXT
Code Example
Shell :: how to add remove origin url 
Shell :: install epel repo centos 7 
Shell :: centos cpus 
Shell :: update npm-windows 
Shell :: matrix cmd 
Shell :: zsh suggestion from history 
Shell :: pip install psycopg2 error fedora 
Shell :: bash strip preceeding white space 
Shell :: change process name pm2 
Shell :: install ssh-copy-id 
Shell :: change owner directory linux 
Shell :: skype linux install 
Shell :: yarn install uuid 
Shell :: how to install mongodb on ubuntu 22.04 
Shell :: bash check if process is running by name 
Shell :: install maven on linux 
Shell :: zoom ubuntu 18.04 
Shell :: how to add windows to grub 2 
Shell :: set go111module= on ubuntu 20.04 
Shell :: conda install moviepy 
Shell :: macbook how to reset launchpad 
Shell :: git push tags 
Shell :: delete old files linux 
Shell :: assign default value in shell script 
Shell :: How to grep for file name recursively with some file content 
Shell :: git global ignore 
Shell :: how to make bat file delete itsself 
Shell :: conda install pytorch lightning 
Shell :: command line weather 
Shell :: sudo kill port windows 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =