Skip to content

ManolisTr/GitHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

GitHub Instructions

Create a new repository on the command line

echo "# GitHub" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:ManolisTr/GitHub.git
git push -u origin main

Push an existing repository from the command line

git remote add origin [email protected]:ManolisTr/GitHub.git
git branch -M main
git push -u origin main

Clone an already existing Repo

git clone [email protected]:ManolisTr/GitHub.git

Get changes from Repo

git pull

Commit changes

git add .
git commit -m "descriptive message"

or for one file

git add hello.py
git commit -m "descriptive message"

Push Changes

git push

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published