Tagged Questions
12
votes
3answers
7k 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 ...
11
votes
4answers
417 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
149 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
0answers
84 views
Push with Git Bash works, but fails with Git Gui
I'm hitting a weird roadblock with Git. I'm trying to push some code to GitHub using Git Gui. I've done this many times before, but this is the first time on this machine. I've set up the keys like ...
3
votes
3answers
53 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
289 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 ...
3
votes
2answers
296 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
47 views
How to delete something that was accidentally pushed
I wanted to do source control on my website. There were a lot of files so I just went git add -a
Unfortunately, I accidentally committed and pushed a file called credentials.txt that had my ftp and ...
2
votes
1answer
200 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
3answers
245 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 ...
2
votes
1answer
247 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
...
1
vote
1answer
313 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] ...
1
vote
1answer
470 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 ...
0
votes
2answers
34 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
106 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 ...