Questions tagged [push]

In distributed version control, push is the action of sending local changes to a remote repository.

5455 questions
2
votes
0 answers

MDM push notifications while guided mode is running?

I need to install an enterprise app through MDM. My MDM implementation generally works. But if I use the guided mode, the push notifications aren't delivered to the devices running in guided mode so the app won't be installed. Why? Is this generally…
Franky
  • 41
  • 1
  • 3
2
votes
1 answer

Xtify Integration For Dreamweaver Phone app

I am creating my first native phone application using dreamweaver and phonegap build service, one of the most important features I need is the ability to send push notifications. That being said I am having a hard time finding a tutorial on…
2
votes
1 answer

I updated the branch of a pull request from upstream/master. Will it pollute the pull request if I push the branch again to github?

I forked a project, created a feature branch, implemented the feature and sent a pull request. While waiting for the answer I updated my local code from upstream and now I'm wondering if I later have to add more things to my feature branch and push…
Tom
  • 7,515
  • 7
  • 38
  • 54
2
votes
4 answers

javascript find object in array by value and append additional value

I think the title explains it well enough. I've got an array that has two values per object and I need to look up the object by one of those values then assign a third to it. Here are the guts: $slides.push({ img: el.attr('href'), desc:…
technopeasant
  • 7,809
  • 31
  • 91
  • 149
2
votes
1 answer

Can ServiceStack be used for HTTP Server Push (HTTP streaming) from Monotouch & Mono for Droid

Can ServiceStack be used for HTTP Server Push (HTTP streaming) from Monotouch & Mono for Droid My understanding of HTTP streaming is that the connection remains open after the response allowing additional data to be pushed to the client or…
2
votes
1 answer

Newsstand Push Notification not launching Application

I send my device the push notification "aps":{"content-available":1} but it doesn't launch the application in background. But when I send the notification this method is called -(void)application:(UIApplication *)application…
lsamayoa
  • 144
  • 4
2
votes
2 answers

git: better alternative to regularly pushing a rebased branch

I have a git repository for a web site, where the master branch represents production code. I have been asked to set up a 'sandbox' version of the site, for potential users of the system to experiment in so they don't have to do that in the…
Malvineous
  • 25,144
  • 16
  • 116
  • 151
2
votes
2 answers

json inArray return always -1 jquery

I want to check if "foo" exists in the array named "Array", but $.inArray always returns -1. Why does it return -1 and how do I solve this? Here is my code in a jsFiddle: var Array =…
Random78952
  • 1,520
  • 4
  • 26
  • 36
2
votes
1 answer

Push on a git server pending?

I just set up a git server. I have a repository made with git init --bare named repo_equipe.git. I successfully cloned that repository on my computer remotely from the server with git clone git://myserv/myrepo.git. Then, I added a file and locally…
2
votes
1 answer

Test for git direct descendant

Anyone know how to test if mybranch-working, a local branch, is a direct descendant of an origin/staging branch. In other words, I would like to test if another developer has merged there changes into origin/staging since I last merged from…
Jon Boehm
  • 41
  • 1
  • 3
2
votes
1 answer

Where did "send a test push" go in the Foursquare consumer details page?

I could swear this option was there a few weeks ago, and now I don't see it anymore. Am I simply looking in the wrong place, or is there no way to send test pushes via the consumer details page anymore?
Jon
  • 1,337
  • 1
  • 14
  • 32
2
votes
3 answers

Push notification using webRTC

I am working on an android project where I need to implement Push notification msg from my own server (that I have created). I need to implement it using WebRTC but after much exploring I have come to know that WebRTC is for voice call. Is my…
anshul
  • 982
  • 1
  • 11
  • 33
2
votes
1 answer

HTTP Error 502: Bad Gateway when pushing to bitbucket

I have a mercurial repository, when I try to push my changes to bitbucket I suddenly get the error HTTP Error 502: Bad Gateway after a long moment of wait (searching changes..) Any idea? this has had me stumped for two days!
Armance
  • 5,350
  • 14
  • 57
  • 80
2
votes
1 answer

How to automatically run another application after pull on repository?

I have 2 Git repository. After push in my main repository automatically pulling another (by hook). What command can help me run external application for doing additional work?
dsm
  • 63
  • 5
2
votes
5 answers

Push into end of hash in Perl

So what I am trying to do with the following code is push a string, let's say "this string" onto the end of each key in a hash. I'm completely stumped on how to do this. Here's my code: use warnings; use strict; use File::Find; my @name; my…
user1440061
  • 445
  • 3
  • 11
  • 21