Skip to content

Quick setup — if you’ve done this kind of thing before

Notifications You must be signed in to change notification settings

ddpd/Quick_setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Quick setup — if you’ve done this kind of thing before

Clone the repository

You can clone this repository using Git:

SSH

git clone git@github.com:ddpd/REPO-NAME.git

HTTPS

git clone https://github.com/ddpd/REPO-NAME.git

Create a new repository on the command line

echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:ddpd/REPO-NAME.git
git push -u origin main

…or push an existing repository from the command line

git remote add origin git@github.com:ddpd/REPO-NAME.git
git branch -M main
git push -u origin main

SSH


HTTPS


About

Quick setup — if you’ve done this kind of thing before

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published