Skip to content

VE6GPO/Learn-Session-Git

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello SSC Lets learn some Git!

SOME handy commands:

git config --global user.name "Sam Smith"
git config --global user.email sam@example.com

git init

git clone /path/to/repository
git clone username@host:/path/to/repository

git add <filename>
git add *

git commit -m "Commit message"

git status

git checkout <branchname>
git checkout -b <branchname>

git push origin <branchname>

git pull

git merge <branchname>

Some useful resources:

This is easy to read for beginners

Awesome "lab" by github - if you want to learn more!

Official Git doc references - a bit hard to read at first, then its super useful for reference

About

Let's learn git!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 85.8%
  • CSS 14.2%