Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JPeer264 committed Mar 19, 2020
1 parent 652a36a commit 6af4c3d
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 19 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
1.0.3 - March, 19 2020

* 652a36a Test: change git repos from ssh to https for travis (JPeer264)
* 38cc2bf Fix: update branch before check if it needs to pull (JPeer264)

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-needs-pull",
"version": "1.0.2",
"version": "1.0.3",
"description": "Check synchronously if a git repository needs to pull",
"main": "build.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions test/fixtures/detached/git/FETCH_HEAD
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of github.com:JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a not-for-merge branch 'check/pull' of github.com:JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of github.com:JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of https://github.com/JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a not-for-merge branch 'check/pull' of https://github.com/JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of https://github.com/JPeer264/git-dummy-repo
6 changes: 3 additions & 3 deletions test/fixtures/detachedBranch/git/FETCH_HEAD
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of github.com:JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a not-for-merge branch 'check/pull' of github.com:JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of github.com:JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of https://github.com/JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a not-for-merge branch 'check/pull' of https://github.com/JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of https://github.com/JPeer264/git-dummy-repo
6 changes: 3 additions & 3 deletions test/fixtures/localBranch/git/FETCH_HEAD
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of github.com:JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a not-for-merge branch 'check/pull' of github.com:JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of github.com:JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of https://github.com/JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a not-for-merge branch 'check/pull' of https://github.com/JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of https://github.com/JPeer264/git-dummy-repo
6 changes: 3 additions & 3 deletions test/fixtures/pull/git/FETCH_HEAD
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
9900273d383ffc2648c436343ba43cbeea83a02a branch 'check/pull' of github.com:JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of github.com:JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of github.com:JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a branch 'check/pull' of https://github.com/JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of https://github.com/JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of https://github.com/JPeer264/git-dummy-repo
6 changes: 3 additions & 3 deletions test/fixtures/pullNeedsMerge/git/FETCH_HEAD
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
9900273d383ffc2648c436343ba43cbeea83a02a branch 'check/pull' of github.com:JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of github.com:JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of github.com:JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a branch 'check/pull' of https://github.com/JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of https://github.com/JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of https://github.com/JPeer264/git-dummy-repo
6 changes: 3 additions & 3 deletions test/fixtures/upToDate/git/FETCH_HEAD
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
9900273d383ffc2648c436343ba43cbeea83a02a branch 'check/pull' of github.com:JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of github.com:JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of github.com:JPeer264/git-dummy-repo
9900273d383ffc2648c436343ba43cbeea83a02a branch 'check/pull' of https://github.com/JPeer264/git-dummy-repo
380c6631c269b544000f78922dc65e10556a2bbf not-for-merge branch 'check/needpush' of https://github.com/JPeer264/git-dummy-repo
31107b9051efe17e57c583937e027993860b11a9 not-for-merge branch 'master' of https://github.com/JPeer264/git-dummy-repo

0 comments on commit 6af4c3d

Please sign in to comment.