Commit 04243c1c524874d2990b57d366efa88551864045

Authored by Perry Werneck
1 parent 39ddb445
Exists in master

Inserindo script para sincronização com o bitbucket.

Showing 1 changed file with 12 additions and 0 deletions   Show diff stats
gitsync.sh 0 → 100755
... ... @@ -0,0 +1,12 @@
  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 +git push bitbucket
  12 +
... ...