Skip to content

Joshua-Parco/git-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GIT TIPS

  • git status: show current status of repo
  • git add: add files to be commited
  • git commit -m 'message here ': commit changes with meaningful message

to add github repo

  • create new repo on github
  • want to add the remote to our project on computer (git remote add origin ssh link here)

Basic workflow

--------------------------- repeat this often ---------------

  • try to break up problems into simplier problems (maybe this on paper, or comments in code, or rubber ducky method)
  • code one these broken up problems
  • test and make sure that chunk is complete
  • git add (files that you changed related chunk of work)
  • git commit -m 'message describes that chunck of work'
  • repeat

------------------------- with github ----------------

  • git push origin master (when a couple chicks or done, or when teammate needs changes)
  • git pull origin master (when grabbing changes)

About

demo using git and menu class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages