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

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

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

PREVIOUS NEXT
Code Example
Shell :: kubernetes add or remove label from existing resource 
Shell :: windows 10 ipconfig fix 
Shell :: bash file properties 
Shell :: csv to column awk 
Shell :: linux updates popos 
Shell :: remote mouse ubuntu 22.04 
Shell :: linux find file 
Shell :: kent c dodds 
Shell :: Github cli default editor set 
Shell :: ubuntu bash open folder in finder 
Shell :: View Changes Before Committing in git command 
Shell :: whatsapp web for ubuntu 
Shell :: how to avoid some files changes to not come in git status 
Shell :: find mtime exec rm 
Shell :: linux echo variable 
Shell :: rename a.out 
Shell :: laravel 7 upgrade 
Shell :: how to remove ubuntu proxy not working 
Shell :: github action on every commit 
Shell :: find docker compose location 
Shell :: git tag older commit 
Shell :: how to open windows powershell 
Shell :: how to install snapcraft 
Shell :: reset to commit 
Shell :: how to run "npm start" ansible pm2 
Shell :: running wordpress locally with valet 
Shell :: git clone vs add remote 
Shell :: cli50 installation 
Shell :: instal ng2 search module 
Shell :: sharepoint logs folder 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =