Commit 3af05c1fa7601e09ba8ebcc83ec25e4ac2730be1
1 parent
efd7719b
Exists in
master
Criando sync com repositório bitbucket.
Showing
1 changed file
with
14 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,14 @@ | @@ -0,0 +1,14 @@ | ||
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 remote add bitbucket https://bitbucket.org/pw3270/pw3270-sharp.git | ||
8 | +# | ||
9 | +git fetch origin | ||
10 | +git checkout master | ||
11 | +git merge origin/master | ||
12 | + | ||
13 | +git push bitbucket | ||
14 | + |