Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Latest commit

 

History

History
64 lines (45 loc) · 3.41 KB

File metadata and controls

64 lines (45 loc) · 3.41 KB

Learn to use Git as quick as possible

The most important commands

  • clone a repository with: git clone http://www.thelinkyouwanttoclone.com.git

  • update a repository with: git pull

  • commmit to a repository with: git commit -am "insert here your comment"

  • after you've added one or multiple files to a folder you must type git add . to show git the fact that you want to add them remotely

  • after a commit or an add you need to push your files into the repository via this command: git push

  • Create a folder in local and then connect it to your account on git

MarkDown files

READMEs are in .md (markdown)

Master the art of .gitignore

Install Git

Git on UNIX platforms

Git is included in your terminal!

Yes, macOs has already Git installed

Git on Windows

Unfortunately Bill decided not to include Git on your machine, but you can remediate by downloading a terminal that will give you UNIX and commands powers: Git for Windows

History of Git

Useful commands for git commit

Problems in Git commits

Games to learn how to use Git