Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

create new repo cli

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:alexpchin/<reponame>.git
git push -u origin master
Comment

Creating a New Repo on the command line

echo "# handydandydevblog" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:githubuserName/urProjectsname.git
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 new repo

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

git create a new repository

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

git create new repository

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

creat a new repository

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

creating new repository

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

git create new repository

git clone https://github.com/myname/myapp.git
cd myapp
touch README.md
git add README.md
git commit -m "adds README"
git push -u origin master
Comment

Create new repo

echo "# relaxer-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/DragoPvP/relaxer-app.git
git push -u origin main
Comment

Git create new repository

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

git log -p
git branch newbranch //- добавление новой ветки с названием newbranch
git branch // показывает в какой ветке находи
git branch -a //показывает все ветки 
git checkout имяВетки //переключает между ветками
git add Имяфайла или . //добавляет файл или если "." все файлы в стейдж/index т потом можно использовать команду git commit для добавления изменений
git git restore --staged . //удаляет все файлы из стейджа или вместо точки им файла который надо вывсти из стейджа 
git commit -m "Комит"//комитит изменения для файлов в индексе на стейдже
git commit -am "Комит" // комитит файлы вне стейджа
git reset HEAD~1 // отменет последний комит но сохраняет измения
git reset --hard //отказатся от локальных изменений
git reset --hard имякоммита(ХешСума) //откатывает до указанного комита и потом можно вернутся обратно запомнив название последнего комита
git reset --hard HEAD~1 // отменяет коммит и удаляет изменения в файле
git push --force // пушит с локальными изменениями без синхронизации
git restore имя файла // отменет изменения в файле
git status // показывает какие файлы в стейдже какие готовы к комит
git log //показывает комиты
git merge <название ветки>, где <название ветки> — название ветки, которая будет объединена с принимающей.
git push origin --delete tests //удалить ветку в репозитории 
Comment

create new repo

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

create new repository

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

CREATE A NEW REPOSITORY

echo "# HTML-SURVEY-FORM-REPO" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/DANCAN-OMONDI-OPENJI/HTML-SURVEY-FORM-REPO.git
git push -u origin main
Comment

Create a new repo

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

PREVIOUS NEXT
Code Example
Shell :: add python to path zsh 
Shell :: pip install algolia 
Shell :: merge develop to branch 
Shell :: chmod 777 command in linux 
Shell :: add a new line at the end of this file in powershell 
Shell :: convert ppk to pem 
Shell :: install latex 
Shell :: store result of command in variable bash 
Shell :: update psql version 
Shell :: install node_modules 
Shell :: how to uninstall slick-carousel 
Shell :: how to create new repository in github 
Shell :: gh ubuntu 
Shell :: mac force quit 
Shell :: how to check upstream git 
Shell :: golang live reload 
Shell :: lenovo touchpad not working ubuntu 
Shell :: powershell replace and rename file name 
Shell :: gh clone 
Shell :: docker getting-started 
Shell :: bash script to clean up log files in /var/log 
Shell :: duplicate file linux 
Shell :: ubuntu 20.04 install repo 
Shell :: printf @ bash 
Shell :: install zotero with command line 
Shell :: how to view current ssh git 
Shell :: how to install onnx on jetson nano 
Shell :: yarn react install 
Shell :: how to kill all emulator 
Shell :: seeing all the installed apps i terminal 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =