In distributed version control, push is the action of sending local changes to a remote repository.
Questions tagged [push]
5455 questions
30
votes
4 answers
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:
…

coderunner
- 303
- 1
- 3
- 5
29
votes
6 answers
php - push array into array - key issue
i am trying to push multiple arrays into 1 big array, resulting in a 2 lvl array.
I got this set of arrays for example:
Array
(
[cod] => ddd
[denum] => ffffffffffffffff
[descr] => ggggggg
[cant] => 3
)
Array
(
[cod] => fff
…

user1248047
- 305
- 1
- 3
- 6
29
votes
1 answer
Git push after rebase
I know this has been asked before but i cant seem to wrap my head around this thing...
git checkout master
git pull
git checkout feature
git rebase origin/master
then resolve all the problems....
Try to push - not gonna happen...
git is really…

Clomez
- 1,410
- 3
- 21
- 41
29
votes
1 answer
Difference between 's emplace and push
What are the differences between 's emplace and push?
here's explanation about the std::queue::emplace and std::queue::push
.
Both methods add element after its current last element, return None.

Dami.h
- 321
- 1
- 3
- 7
28
votes
4 answers
Server Scalability - HTML 5 websockets vs Comet
Many Comet implementations like Caplin provide server scalable solutions.
Following is one of the statistics from Caplin site:
A single instance of Caplin liberator can support up to 100,000 clients each receiving 1 message per second with an…

P.K
- 18,587
- 11
- 45
- 51
28
votes
2 answers
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 the ability to easily pull new changes if a new…

Soviut
- 88,194
- 49
- 192
- 260
28
votes
1 answer
JavaScript: Push into an Array inside an Object?
Questions:
How can I push an Array into another Array located inside an Object?
Example Coding:
var myObj = {
arrayOne: [],
arrayTwo: []
};
var arrayLetters = ['A', 'B'];
/************************************…

Coder 314
- 331
- 1
- 3
- 5
27
votes
4 answers
Git basic workflow
Possible Duplicate:
git push error '[remote rejected] master -> master (branch is currently checked out)'
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…

bsr
- 57,282
- 86
- 216
- 316
27
votes
5 answers
How do we verify commit messages for a push?
Coming from CVS, we have a policy that commit messages should be tagged with a bug number (simple suffix "... [9999]"). A CVS script checks this during commits and rejects the commit if the message does not conform.
The git hook commit-msg does this…

Dale Forester
- 18,145
- 10
- 27
- 27
27
votes
5 answers
How can I add a README.md file with Xcode?
I'm trying to add a README.md file in my Xcode Project, and push it to GitHub. How can I do it? Creating a file inside the root of the project doesn't work because - I think - Xcode doesn't see it.

flip79
- 1,178
- 2
- 15
- 28
26
votes
3 answers
Handling user notifications on iOS 10
I have troubles determining when the user taps on a user push notification on iOS 10.
So far, I have been using the -[UIApplicationDelegate application:didReceiveRemoteNotification:fetchCompletionHandler:] which is called when
Case 1: the…

Jan
- 7,444
- 9
- 50
- 74
26
votes
5 answers
Git Push Error - Could not resolve host name
nshastri@N-SHASTRI ~/datasciencecoursera (master)
$ git push origin master
ssh: Could not resolve hostname https: no address associated with name
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
…

Narendra Kumar Shastri
- 301
- 1
- 3
- 5
26
votes
4 answers
APNS Push Notifications Not Working on Production
I created an App to send remote notifications from a web server.
When I tested the App in Development Mode all the notifications arrived correctly on the phone, after the AppStore release the app did not receive notifications anymore.
Here it is…

prelite
- 1,073
- 2
- 9
- 20
26
votes
6 answers
Recursive Git push/pull?
I have a git repository that contains other git repositories. Are there commands that recursively push and/or pull for not only the meta-repository but the sub-repositories?

David Y. Stephenson
- 872
- 4
- 22
- 44
26
votes
7 answers
How do you push code with gitg?
I can do everything else I need but with the GUI I cannot seem to figure out how to pull or push code. Pushing is more important in this case, anyone know how?

labago
- 1,338
- 2
- 12
- 28