Horje
git init Code Example
git init repo
git init
git add somefile
git commit -m "initial commit"
git remote add origin https://github.com/username/new_repo
git push -u origin master 
Source: kbroman.org
git init
echo "# Nelson_Mandela_Tribute_page" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/{github username}/{git title}.git
git push -u origin main
Source: github.com
git init
cd /path/to/my/codebase
git init   
git add .    
git commit -m "my comment"   
git init
The git init command creates a new Git repository.
This will include the application in that particular folder and
create a hidden .git directory where the repository history and settings will be stored




Shell

Related
open ssh linux mint Code Example open ssh linux mint Code Example
pulseaudio check if runnings Code Example pulseaudio check if runnings Code Example
Install MySQL FreeBSD Code Example Install MySQL FreeBSD Code Example
install AMD drivers on Ubuntu 21.04 Code Example install AMD drivers on Ubuntu 21.04 Code Example
add a new line at the end of this file in powershell Code Example add a new line at the end of this file in powershell Code Example

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