Tagged Questions
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
398 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 ...
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 ...
3
votes
3answers
37 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
2answers
283 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
1answer
153 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
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
278 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 ...
1
vote
3answers
200 views
Receiving emails on GIT push
I am used to subversion, where the collaborate group would receive an email whenever someone commits.
Is there a similar feature on GitHub, so the people working on the repository receives an email ...
1
vote
1answer
294 views
What can I do when git push fails with …“local out of date”?
I'm sure this is a pretty easy fix, but I'm not sure why my pushes to GitHub are failing.
Right now it looks like:
$ git push origin master
To git@github.com:user_name/project_name.git
! [rejected] ...
0
votes
2answers
33 views
How to push changes from a forked project to the original project?
I’m supposed to work on my client's project on GitHub, where the changes would be on his repository. I tried to follow the fork example, but could only get the changes to go to my account repository?
...
0
votes
2answers
84 views
How to push my changes back to the source code in git
I forked a project in github and then did a git clone on this project to get all the source code to my machine.
I have made some modifications to the source code and my questions are:-
1. How to ...
0
votes
1answer
436 views
How can I recover from an erronous git push -f origin master?
I just committed the wrong source to my project using -FORCE.
Is it possible to revert? I understand that all previous branches have been overwritten using -f, so I may have screwed up my previous ...