Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
11answers
49k views

Push Notifications in Android Platform

I am looking to write an app which received pushed alerts from a server. I found a couple of methods to do this. SMS - Intercept the incoming SMS and initiate a pull from the server Poll the ...
47
votes
5answers
14k views

Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone?

I'm relatively new to Mercurial and my team is trying it out right now as a replacement for Subversion. How can I commit and push a single file out to another repository while leaving other ...
31
votes
8answers
40k views

Unable to Git-push master to Github

This question is related to my problem in understanding rebase, branch and merge, and to the problem How can you commit to your github account as you have a teamMate in your remote list? I found ...
29
votes
8answers
3k views

With Mercurial, how can I “compress” a series of changesets into one before pushing?

Let's say I have a local and a remote Mercurial repository. Now, I start working on a feature. I work on it, and when I think it's done, I commit the changeset. Testing it a bit more, I find that I ...
26
votes
5answers
8k views

What is the difference between git commit and git push?

In a Git tutorial I'm going through, git commit is used to store the changes you've made. What is git push used for then? Thanks for reading!
21
votes
2answers
4k views

What is the advantage of the rebase command in Mercurial?

Compare to standard push/pull, what is the advantages of using the rebase command in Mercurial?
19
votes
2answers
6k views

Set up git to pull and push all branches

I'd like to push and pull all the branches by default, including the newly created ones. Is there a setting that I can define for it? Otherwise, when I add a new branch, locally and I want to pull ...
18
votes
2answers
6k views

Mercurial client error 255 and HTTP error 404 when attempting to push large files to server

Problem: 19/06/10 Update: More evidence problem is server-side. Receiving this error on Windows 7 command line (see below for full traceback): URLError: <urlopen error [Errno 10054] An existing ...
16
votes
4answers
2k views

git - pushing specific commit

I have made several commits on different files, but so far I would like to push to my remote repository only a specific commit. Is that possible?
15
votes
4answers
9k views

Git basic workflow

I am new to Git and trying to use it for a local grails project. The steps I followed: create the grails project go to the project directory and git init Add all the files in the project in ...
15
votes
8answers
8k views

Silverlight and push notifications

I am creating a Silverlight 2 user interface to a remote instrument. There are two concurrent users at different sites interacting with the instrument (operator at the instrument and remote scientist) ...
12
votes
1answer
2k views

Determine on iPhone if user has enabled push notifications

I'm looking for a way to determine if the user has, via settings, enabled or disabled their push notifications for my application. Thanks.
11
votes
3answers
1k views

How to send a push notification using Erlang?

I'm trying to send a push notification to APNs using Erlang. This is the code I came up with so far: -module(apnstest2). -export([connect/0]). connect() -> application:start(ssl), ...
10
votes
5answers
5k views

Bundle Identifier and push certificate… aps-environment entitlement error

I've read Where does xcode take application's Identifier from? , XCode bundle identifier formatting from {PRODUCT_NAME} , and loads more but... I'm trying to get push notifications going and ...
9
votes
4answers
1k views

Prevent local changes to get pushed in Git

This one is for you! I have cloned a repository and the master branch in my repo is tracking origin/master. I created a work branch and changed some config files specific to my dev machine to make ...
9
votes
1answer
3k views

iPhone: how to remove badge after Push Notification?

What is the code to remove the badge on my app's icon? When I receive push, I need to remove it when a button is clicked!
9
votes
5answers
5k views

PHP technique to query the APNs Feedback Server

Can someone clarify what the APNs (Apple Push Notification) wants as far as how you query it? The docs say it starts sending as soon as the connection is made. Does this mean that I don't do an ...
8
votes
4answers
2k views

Mercurial says “abort: outstanding uncommitted changes”, I don't want to commit!

Scenario: Local repo, before I leave the office $ hg status M important/update1 M another/important/update2 M work/in/progress I want to commit and push important/update1 and important/update2, ...
7
votes
4answers
86 views

Listening for Git Repo Changes

I want to write an app that given a user's GitHub account information and a repo will be notified whenever the repo is pushed to. I know I could basically save the state of the repo and poll it for ...
7
votes
1answer
519 views

TortoiseHg Push

What's the TortoiseHg equivalent of: hg push http://bitbucket.org/MY_USER/MY_REPO I haven't been able to figure out how to do this in the manual, and I ask this after extensive Google searching. ...
7
votes
4answers
6k views

git push fatal failed

I somehow deleted the whole directory of my code branch. I cloned a new one. It worked fine except pushing. ~/workspace/wtf (mybranch)]$ git push origin mybranch error: Cannot access URL [my url], ...
7
votes
2answers
2k views

TortoiseHg: Push Branch

I am working on some bugs in our code base and I have created separate branches for each bug. I have rebased one of the branches on top of default. I generally use the mercurial plugin for Eclipse and ...
7
votes
2answers
2k views

Apple Push Notification: Sending high volumes of messages

I am using PHP to connect to apns to send some notifications to multiple devices, although the question is more conceptual so it doesn't have to be specific to PHP. I will be sending to about 7000 ...
7
votes
4answers
2k views

Preview a git push

How can I see which commits are actually going to be pushed to a remote repository? As far as I know, whenever I pull master from the remote repository, commits are likely to be generated, even if ...
6
votes
2answers
101 views

Git: How to push from “no branch” to a new remote branch?

I did: git co upstream/master # To no branch. <then did a trivial edit on some file...> git commit -a -m "Trivial edit" git push origin NewBranch But got this: $ git push origin ...
6
votes
2answers
616 views

How to use Push Notifications

Regarding push notifications. How do I get the provision from APNS to implement push notifications in to my application. Help me guys.
6
votes
1answer
2k views

How to only push to one branch in Hg?

I have a Hg repo with 3 branches in it, but two of them are inactive (since I have already merged them into my default branch). hg heads shows 3 heads, one for each branch, even though hg branches ...
6
votes
2answers
543 views

PubSubHubBub Hubs

I'm currently building a live web application based upon the PubSubHubBub protocol. However, I encountered several issues. First, I'm in search of a hub application that I can run on my server. There ...
6
votes
5answers
6k views

Git Push into Production (FTP)

I would like to know if there is an easy way to push a GIT repository into production (on a FTP server) ? Thanks
6
votes
6answers
1k views

Apple Push Notifications - When Registering for Notifications no Callbacks are received at all

I've gone through all the steps as specified, am using a dev certificate with APN enabled and am calling registerForRemoteNotificationTypes: with the right flags in my app delegate. Still, neither ...
6
votes
4answers
13k views

git push rejected

I give up! Whenever I try to push I get a stupid: ! [rejected] master -> master (non-fast forward) error: failed to push some refs to 'git@github.com:companyX/projectX.git' Our team has ...
5
votes
1answer
71 views

Do objects pushed into an array in javascript deep or shallow copy?

Pretty self evident question...When using .push() on an array in javascript, is the object pushed into the array a pointer (shallow) or the actual object (deep) regardless of type.
5
votes
2answers
301 views

Apple Push Notifications, how do I properly export my cert?

I can't seem to figure out how to properly export my cert for use in my iOS app with push notifications. I'm using the following cert, downloaded from the Certificates section of the iOS Provisioning ...
5
votes
2answers
302 views

How can I prevent mercurial from pushing subrepos?

In my repository I've added several sub-repositories for modules that I'm using. I'm always going to treat these subrepos as "pull only". I don't plan to make any changes to them but want to retain ...
5
votes
1answer
6k views

In XCode 4 how do I add a remote GitHub repository to an existing local project?

The Git integration in XCode 4 is very welcome however it seems to be a bit flaky when it comes to dealing with remote repositories. For clarity I'm using OS X version 10.6.7 and XCode 4.0.2 ...
5
votes
5answers
2k views

Apple APNs 2048-bit TLS/SSL certificate update

Today i received an email from apple telling they are changing something connected with push notifications, and wanted to ask what to do with the certificate they gave me link to... My server runs ...
5
votes
2answers
693 views

Does JavaMail support server-push?

Does JavaMail support notification of new emails through server-push? If yes, where is the documentation for that? If no, is there a library that can do it?
5
votes
2answers
3k views

Push notifications work for Ad Hoc, but not when downloaded from the Apple store

My app just got approved for the apple store. I downloaded it an installed it on my iPhone - but it looks like push notifications are broken! I was successfully testing push notifications in ...
5
votes
5answers
9k views

How to push both value and key into array with php

$GET = array(); $key = 'one=1'; $rule = explode('=',$key); /* array_push($GET,$rule[0]=>$rule[1]); */ I'm looking for something like this so that: print_r($GET); /*output:*/ ...
5
votes
3answers
3k views

git push not send changes to remote git repository

Hi I am making changes to some file in my local git repository and then want to send the changes to the remote git repository from which the local was cloned via ssh. After run "git commit -a" on my ...
4
votes
3answers
58 views

Push to two repositories that can't reach each other

The setup: a laptop L an office server hosting various repositories SOffice a customer's database server SCustomer I'm writing code on L for a customer, and regularly want to push it both to ...
4
votes
4answers
116 views

If I wanted to create an AJAX chat what communication technique should be used to maintain scalability?

I put together an AJAX chat a while back ASP.NET MVC and jQuery. The javascript would hit the server about every 7 seconds to check for new messages. Obviously this was horrible on performance as the ...
4
votes
2answers
971 views

Unable to push to repository using GIT Extensions

I'm pulling my hair out right now because of this. I have downloaded and installed GIT, did the same for GIT Extensions (as we're going to be using it for VS2010), and everything worked fine and ...
4
votes
2answers
157 views

Want git post receive hook to make new commit and push

I would like my post-receive hook to be responsible for updating a version file in the repo itself, under certain conditions. So, suppose I have a file version.txt in my repository, I would like the ...
4
votes
1answer
318 views

How can I test WebSockets (using Pusher) with RSpec?

I am looking for successful methods for testing WebSocket push events using RSpec. My application currently uses Pusher App, but more broad information relating to WebSockets is most welcome. ...
4
votes
1answer
448 views

How many characters can you squeeze into a Apple Push Notification?

Given that you have a super simple notification such as { "aps": { "alert" : <MY_MESSAGE> } } and the 256 byte limit to deal with how many characters can MY_MESSAGE be? Or the ...
4
votes
2answers
539 views

How do automatically push an Android app from the web onto a phone?

AppBrain's Fast Web Install is able to push apps from their web site directly onto an Android phone with no user intervention. This requires the user's Google account credentials or auth token, so ...
4
votes
4answers
606 views

Is there a free open source that implements Comet or Push?

I am looking for a free implementation for Comet or Push. Here is an example of chat done by comet: http://www.phpchatsoftware.com/phpbb/ I have my own server. Is there any thing like this? P.S. I ...
4
votes
6answers
90 views

Ajax simple question

I have a very simple question about ajax. If I'd like to refresh a particular area of my site I supose ajax would be the best way. But is there anyway instead of having a javascript periodically ...
4
votes
3answers
1k views

Git push vs. git push heroku master

I just moved from a pc laptop to a Mac, and I've noticed a curious difference in how my git commands respond. Before, I would do the following: git add . git commit -m "These are my new changes" git ...

1 2 3 4 5 16