Commit fe240cba90ffcccaca997ed92bca5edf4c09d064

Authored by Perry Werneck
1 parent e4ae66ef

Incluindo script para sincronização com o bitbucket.

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
gitsync.sh 0 → 100755
... ... @@ -0,0 +1,11 @@
  1 +#!/bin/bash
  2 +#
  3 +# https://help.github.com/articles/syncing-a-fork/
  4 +#
  5 +# https://help.github.com/articles/configuring-a-remote-for-a-fork/
  6 +
  7 +git fetch origin
  8 +git checkout master
  9 +git merge origin/master
  10 +
  11 +
... ...