Skip to content

sarikaricky/Pre-Course-Git-Fu

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Pre Course Git Fu

Terms for learning Git

  • Repository - a place where software is stored
  • Git - Version Control - records changes to a file(s) so that you can recall version later
  • Clone - target an existing repository and copy it
  • Fork - copy of a repository
  • History - collection of all the different commits
  • Staging - make changes to the working directory, and when you decide you wanna interact with version control, it allows you to record changes in small commits
  • Remote - versions of your project that are hosted on the Internet or network somewhere
  • Commit - Record changes to the repository
  • Push - Update remote refs along with associated objects

Steps to our Lamba School Git Flow

  1. Fork repository
  2. git clone w/ the repository URL
  3. After Changes Made: git status
  4. git add <file-name>
  5. git status to check what is staged
  6. git commit -m 'made changes to the Readme'
  7. git push

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors