Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git bash new repository

git init
git add -A
git commit -m 'Added my project'
git remote add origin git@github.com:sammy/my-new-project.git
git push -u -f origin master
git clone url
git fetch
git push (to check)
Comment

can i create a git repository via terminal

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

create new repository in git bash

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

create a new git repository on the command line

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

creating new repository in git

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

Git create a new repository on the command line

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

Git create a new repository on the command line

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

create new git repository

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

git create new repo in git bash/ terminal

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

create github repository from git bash

Git and git hub repo
Comment

PREVIOUS NEXT
Code Example
Shell :: install kubebuilder in macbook pro 
Shell :: sed until first match 
Shell :: how to install snapd on ubuntu 
Shell :: ubuntu server 20.04 list only user names 
Shell :: linux mint download 
Shell :: github download 
Shell :: set remote git 
Shell :: install docker linux debian 10 
Shell :: nvm change version 
Shell :: update msfconsole 
Shell :: listen unix /home/jatoba/.pomo/pomo.sock: bind: address already in use 
Shell :: if float less than bash 
Shell :: install pkgbuild arch 
Shell :: composer install ubuntu 
Shell :: install sublime text editor ubuntu terminal 
Shell :: uninstall flake 8 in vs 
Shell :: git new branch from current 
Shell :: configure: error: --with-openssl was given but OpenSSL could not be detected 
Shell :: growth ebs disc ec2 running 
Shell :: ls recursive 
Shell :: how to rename a file on cmd prompt to current date 
Shell :: grep get everything between two strings 
Shell :: how to use /dev/urandom 
Shell :: Missing essential plugins: com.android.tools.design org.jetbrains.android 
Shell :: check os shell liunx cygwin darwin 
Shell :: power shell 
Shell :: WSL Updating the Ubuntu OS 
Shell :: powershell pip install module 
Shell :: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), 
Shell :: pgadmin4 : Depends: libpython3.7 (= 3.7.0) but it is not installable 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =