Horje
git new repo instructions Code Example
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
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
Source: github.com




Shell

Related
wifi adapter not detected ubuntu Code Example wifi adapter not detected ubuntu Code Example
ubuntu command history Code Example ubuntu command history Code Example
run bash script in its directory Code Example run bash script in its directory Code Example
bash: /var/lib/snapd/snap/bin/docker-compose: No such file or directory Code Example bash: /var/lib/snapd/snap/bin/docker-compose: No such file or directory Code Example
bash: /usr/local/bin/docker-compose: No such file or directory Code Example bash: /usr/local/bin/docker-compose: No such file or directory Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11