Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Develop and Git it

namdi
October 21, 2017

Develop and Git it

Presentation at Minna Technology Meet up 2.0 on the Use of Git for collaboration and efficient workflow amongst developers. How to check for git on your system and how to setup properly.

namdi

October 21, 2017
Tweet

More Decks by namdi

Other Decks in How-to & DIY

Transcript

  1. Hello! I am Nnamdi A User Security Advocate and Developer

    with Android and Web Technologies You can find me at: @okoronamdi
  2. “ Git is a distributed (Server has the repo.& your

    local machine can have a copy) type of Version Control System that helps keep track of changes to files using commit messages.
  3. INTRODUCTION ◦ Git is an open source project created by

    Linus Torvalds ◦ It helps in efficiency and collaboration in development workflow. ◦It was assembled by Linus Torvalds to manage the Linux Kernel
  4. GETTING STARTED Launch CMD (CommandPrompt/Terminal), - Type git --version Set

    your Git username and email to your global config: • git config --global user.name "abc Hoffman" • git config --global user.email "[email protected]" – Download the software http://git-scm.com/downloads
  5. Help to Share your work in progress with others without

    altering the code in production or in development BRANCH?
  6. Workrelated BRANCH – Help to Share your work in progress

    with others Without after the MASTER branch Pull requests let you tell others about changes you've pushed to a repository on GitHub.