Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git new repo instructions

git init
git add . //this is what works . means current dir
git commit -m "init"
git branch -M main
git remote add origin <git-repo-link>
git push -u origin main
Comment

git create new repo

echo "# TicTacToe" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Sandox/TicTacToe.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

PREVIOUS NEXT
Code Example
Shell :: install kazam ubuntu 18.04 
Shell :: random 6 digit number c# 
Shell :: cmake version comand 
Shell :: Failed to start nginx.service: Unit nginx.service not found. 
Shell :: install cocoapods 
Shell :: sequlize create new migraion 
Shell :: command count files 
Shell :: How to see incognito history? 
Shell :: linux check line exist in file 
Shell :: delete distro 
Shell :: tar unpack 
Shell :: add user to sudoers ubuntu 20.04 
Shell :: find gpu device id linux 
Shell :: install adobe reader on ubuntu 
Shell :: rm hidden files linux 
Shell :: tor ubuntu 
Shell :: git commits by author 
Shell :: git commit only added files 
Shell :: requires pyqt5<5.13, which is not installed. 
Shell :: ubuntu 20.04 powerlevel10 vs code 
Shell :: unzip bz2 file ubuntu 
Shell :: locate all exe file in powershell 
Shell :: ubuntu show memory usage 
Shell :: extract tar linux 
Shell :: uninstall dependencies npm 
Shell :: how to check free space in linux 
Shell :: bash print environment variables 
Shell :: ano de lançamento do youtube 
Shell :: flutter change Target file from lib/main.dart to another 
Shell :: please reinstall android studio from scratch 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =