Tagged Questions
The git-push tag has no wiki summary.
62
votes
6answers
20k views
Undoing a git push
I just did a doodoo, and in need of some help :)
Here's what I did on my supposed-to-be-stable branch...
% git rebase master
First, rewinding head to replay your work on top of it...
Fast-forwarded ...
28
votes
2answers
22k views
GIT - Push only to a remote branch
I'm working on a local repo, theres 2 branches, the master and the feature_x
I wanna push feature_x to remote, but dont wanna push the changes on master branch.
Doing a "git push origin feature_x" ...
17
votes
2answers
8k views
Git merge flattening
If I am working in multiple branches on a single feature, I use git pull branch1 branch2 branch3 to pull all the changes into my master branch. However, all the commit logs of each branch are copied ...
16
votes
3answers
7k views
git push tag -> master
I am trying to accomplish something that is probably very simple, though I cannot figure out how, or what I'm doing wrong. So to get straight to the point:
I want to push for example my tag 1.0.0 to ...
11
votes
3answers
6k views
Push and Pull Branches In Git
I have a local repository I'm working on and it's remote is hosted on GitHub. I recently created a branch and started working on it making several commits and now wish to push the branch to GitHub ...
9
votes
4answers
397 views
How to convert a readonly git clone from github to a forked one
From time to time I encounter this issue.
Let's say that I did following to read the source code of rails because I am running into some issues.
git clone git://github.com/rails/rails.git
During ...
9
votes
3answers
1k views
Unable to push to git Repository. It hangs after “Writing Objects: 100%”
I am running git daemon with the following command.
c:\cygwin\bin\git daemon --reuseaddr --base-path=/cygdrive/S --export-all --verbose --enable=receive-pack
I am able to clone and pull updates but ...
9
votes
2answers
4k views
Git push only for bare repositories?
When I tried 'git push origin master' to remote repository on my external disk, git warning occured stating that pusing to checkout repository will in next releases of git refused by default. On ...
8
votes
2answers
712 views
Git receive/update hooks and new branches
I have a problem with the 'update' hook. In the case of a new branch, it gets a 0000000000000000000000000000000000000000 as the 'oldrev'. And I don't know how to handle that case.
We have the ...
8
votes
2answers
275 views
git: Simple solution for pushing between working copies
What I want to do: On my (ssh remotely accessible) university machine I work on a project which I have put under git source control (git init, then git commit -a after every change, all works fine). ...
7
votes
1answer
4k views
How to specify which SSH key to use within git for git push in order to have gitorious as a mirror?
I have a project hosted on git.debian.org (alioth) and I'd like to configure a post-receive hook to update a mirror of the repository on http://gitorious.org
I suppose I'll have to use git push ...
6
votes
5answers
2k views
how to push different local git branches to heroku/master
Heroku has a policy of ignoring all branches but 'master'.
While I'm sure Heroku's designers have excellent reasons for for this policy (I'm guessing for storage and performance optimization), the ...
5
votes
2answers
639 views
Error in the push Heroku, json and ruby 1.9.2
I have a problem at the time of the push Heroku, follow the below error
-----> Gemfile detected, running Bundler version 1.0.7
Unresolved dependencies detected; Installing...
Using --without ...
5
votes
2answers
135 views
Is there a way in git to obtain a push date for a given commit?
I am wondering if there is a way to view a push date associated with each commit in the git log. If that is not possible, is there a way to see all the commits under a certain push.
I writing a ...
5
votes
1answer
64 views
Does `git push` work as shorthand for `git push origin newfeature`?
I note that the default behaviour of git push origin is to "push all branches with same local and distant name".
If I create a new branch newfeature and check it out, will git push push the branch to ...
5
votes
2answers
260 views
git push to remote branch
Folks,
I had cloned a repo. I created a branch out of it to work on a feature by issuing the following command:
git branch fix78
then I worked on that branch by
git checkout fix78
I continued to ...
5
votes
2answers
468 views
Git create remote repository on push
I have been trying to figure this one out but I am having a hard time doing so. I am currently working on an open source project that requires me to allow a user to push to remote repository without ...
5
votes
3answers
388 views
Using git right (for private repo website code)?
This may be a question about convention, best practices and/or personal preferences:
So I'm a git noob, and my website code is not worth sharing, so I'm not using github or the like.
Knowing that ...
4
votes
1answer
623 views
Push Git branches directly into a live server directory so files are seen live
How can I set up remote directories in Git where I can locally push a stage branch to the remote and see the live changes on a staging server, like stage.example.com?
The notion I have (part of why I ...
4
votes
3answers
316 views
Predict how much data will be pushed in a git push
I am occasionally on an expensive Internet connection and I would like to know (at least approximately) how much data will be pushed to the remote in a git push.
4
votes
1answer
626 views
Why “git push helloworld +master:master” instead of just “git push helloworld”?
I tried to push my (first ever!) git repo like this initially:
$ git push helloworld
But I got this back:
To git-smichaels@free5.projectlocker.com:helloworld.git
! [rejected] HEAD -> ...
3
votes
3answers
35 views
How can I remove all files in my git repo and update/push from my local git repo?
Is it possible to remove all files in a repository and update it with only the files I have in my local machine? The reason is that, there are certain files that is not necessary in my github and so I ...
3
votes
1answer
78 views
How to fix a deleted git commit branch or refs?
Ok, I got a little problem with git. Seems by accidentally, I delete one of git commit branch / refs / or something. So.... every time I try to use the "git push" there is always an error like below : ...
3
votes
2answers
52 views
how to implicitly `git push` from a local branch “X” to “origin/Y”
Say you have a branch on your origin that has a ridiculously long name...
$> git branch -a
* master
origin/master
origin/branch-with-a-ridiculously-long-name
And when you work on that branch ...
3
votes
1answer
80 views
What is the significance of missing parameters on the 'git push' command?
What is the significance of the following commands:
git push
git push origin
git push origin master
3
votes
3answers
88 views
Git Push clarification - What gets pushed?
When I push a local working directory to a central repository, do all intermediate branches and commit information (from last push to this one) get pushed?
In other words, does push produce an exact ...
3
votes
2answers
142 views
Git forced push: how to prevent overriding other user's changes
I often have to use git reset and git rebase to change a few recent commits (rearrange, merge multiple commits to one, ...). That requires to use the force option when pushing. Unfortunately, this ...
3
votes
2answers
208 views
How can I push a local Git branch to a remote with a different name easily?
I've been wondering if there's an easy way to push and pull a local branch with a remote branch with a different name without always specifying both names.
For example:
$ git clone myrepo.git
$ git ...
3
votes
3answers
1k views
Using git to publish to a website
I used this guide to use git to autopublish my changes on my website when I push to my remote origin git repository:
http://www.lwp.ca/james/2010/03/using-git-to-manage-online-website-projects/
...
3
votes
3answers
944 views
Does git or does git not support push to an ftp server?
I believe git ftp support is a somewhat recent addition, but the git push docs do clearly state that "Git natively supports ssh, git, http, https, ftp, ftps, and rsync protocols." (emphasis added)
...
3
votes
1answer
451 views
git pull says up-to-date but git push rejects non-fast forward
I've just pulled a new branch, made some local changes, comited and tried to push. I was given this error: ! [rejected] groups -> groups (non-fast forward)
So I tried a to pull but was told Already ...
3
votes
3answers
134 views
Why do I have problems pushing new branches to my Git repository?
As a followup to my question about unavailable branches after svn to git migration, I have a different problem: I'm unable to push new branches to my central Git repository.
$ git clone ...
3
votes
5answers
314 views
How can I prevent git push if local modifications are detected (including untracked files)?
Sometimes someone on our team does a git push and breaks the build because his local build works but he has forgotten to commit all his local modifications and untracked files to git before he pushes.
...
3
votes
2answers
164 views
git: how to see changes due to push?
I can't quite figure out how to see what exactly was changed, in the remote repository, by a 'push'. 'git log' shows me the series of commits but those took place in my local repository and were ...
3
votes
2answers
282 views
Branching my own project from github, then pushing it back to github with branches intact
This feels like im missing something obvious, but i've been reading tutorials for 3 days and can't seem to make it happen.
I have a private repo on github. I want to run it as two separate branches. ...
2
votes
2answers
52 views
Why “git push” is rejected? (“git pull” doesn't help)
My current branch is my_branch. Trying to push the changes to the remote repo I get:
$ git push
Counting objects: 544, done.
Delta compression using up to 4 threads.
Compressing objects: 100% ...
2
votes
1answer
151 views
Elegant solution to prevent force push on master only
I'm trying to figure out a good way to prevent developers from force pushing master with git. We used github to host our remote repos so a pre-receive hook isn't an option. Any other solutions that ...
2
votes
2answers
136 views
pull-only repo's 'git status' saying the branch is ahead of origin/master. Why?
So here's the situation:
$ git status
# On branch master
# Your branch is ahead of 'origin/master' by [x] commits.
#
There are several questions about this on SO already, but none seem to ...
2
votes
1answer
235 views
git force push current working directory
I need to git push to remote, and that push need to be current working copy. Because, pushed source is a web host. So, pushed files need to be currently in use. I am sure no one will edit files at the ...
2
votes
1answer
53 views
Git how to push different working copies to different bare repos
I've run into a problem when I try to push only the new files I created to a different bare repository.
Say, I had two bare repository: repo1.git and repo2.git
I clone a copy of repo1.git and ...
2
votes
3answers
256 views
Unable to push code on github?
I have successfully pushed one app code onto github.
I had set up the ssh key and added it to github.
But then I started working on another app and tried to push it onto github using:
git remote add ...
2
votes
2answers
318 views
git: disable automatic pushing to a certain remote branch
When I run git push, my local branch some_branch is pushed to a remote branch some_remote\some_branch.
When I run git remote show some_remote I get:
Local refs configured for 'git push':
[cut]
...
2
votes
1answer
230 views
Can't commit changes to github
Whenever I try and to commit changes to my github repo I get this error.
To git@github.com:antarr/3skeleton.git
! [rejected] master -> master
(non-fast-forward)
error: failed to
...
2
votes
2answers
669 views
Git push complaining about non-fast-forward, even though remote has been pulled
I'm trying to push my changes to a repo on my NAS. It's failing in a way I don't understand.
The documentation states that by default push works only with fast-forward updates. Fair enough. So I do ...
2
votes
3answers
73 views
git - changing versions of code?
Right now my method of using git is to develop a website locally and when it's looking good, to git push origin master and then ssh into the server and git pull origin master. I'm curious if there's a ...
2
votes
1answer
191 views
Is there anyway to make git-push interactive?
On my remote git server, I have a pre-receive hook that will check-in (commit) into a clearcase repository using rcleartool's non-interactive command. What I'm working on is essentially a git to ...
2
votes
1answer
382 views
Gerrit Code Review error - you are not committer
I have a local clone with my commits showing author and email id as UserA since i have configured my clone with git config.
I fetched and merged some commits from my colleague's clone (UserB) whoc is ...
2
votes
2answers
277 views
git delete branches not on local
There's a bunch of branches on one of my git repo's that I got when I forked it on github. I don't really care for my github fork to have these branches. Is there any way that I can push that will ...
2
votes
2answers
1k views
git http push via WebDAV - what if my username has an “@” in it?
My web hosting provider lets me access my webspace via WebDAV, so I thought I'd set up a git repository over there just to see what happens. Cloning the repository read-only works just fine, as "git ...
2
votes
4answers
2k views
“git push” failed: “You did not specify any refspecs to push”
I set up a git project on projectlocker to push my git files to. Then I went into the directory where I had initialized a git project and staged my files. And finally I tried to push the project to ...