Skip to content

Latest commit

 

History

History
61 lines (58 loc) · 1.82 KB

README.md

File metadata and controls

61 lines (58 loc) · 1.82 KB

GCS Team

  • Repo dedicated to development's project of Gerencia de Configuração de Software @ Unisinos.

Step By Step Collaborator PUSH Configuration

  1. Instal Git on your machine.
  2. Check if your machine has Git.
git --version
  1. Go to https://github.com/LuisValgoi/gcs-team
  2. Fork the project throught the right-up-corner button.
  3. It will be generated an URL.
  4. Go to your preference Development Code Folder.
  5. Clone this URL into your machine (this folder).
git clone https://github.com/LuisValgoi/gcs-team.git
  1. After you finished your changes, stage it, commit it and push it.
git add .
git commit -am "message"
git push
  1. Go to https://github.com/LuisValgoi/gcs-team
  2. Click on right-up-corner Pull-Request button.
  3. Wait for the Repository's Admin merge your changes.

Step By Step Collaborator PULL Configuration

  1. After you've forked into your machine the original repository.
  2. Add remote from original repository in your forked repository.
cd into/cloned/fork-repo
git remote add upstream git://github.com/LuisValgoi/gcs-team.git
git fetch upstream
  1. Updating your fork from original repo to keep up with their changes:
git pull upstream master
  1. To see if you have any changes to pull from the original repository
git status upstream master

Collaborators