Tagged Questions
1
vote
1answer
153 views
Git Pull: EGit with GitHub
I followed the tutorial http://wiki.eclipse.org/EGit/User_Guide#GitHub_Tutorial to setup EGit with GitHub. When I want to pull I had the same problem described here: The current branch is not ...
0
votes
3answers
264 views
Github branch is ahead by 5 commits, how to fix?
Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Allen\Documents\GitHub\project2-pd7 [master]> git status
# On branch master
# Your branch is ahead of ...
1
vote
1answer
30 views
Github branches for multiple customers
I have an iOS that app that I need to deploy to several clients. Each clients has a few small changes in the app (images, provisioning files, app name, etc). 95% of the app is the same for all ...
3
votes
2answers
354 views
Why does git say I am 40 commits ahead when I seem up to date and a push-pull (no files) fixes it?
I switch to master and it says I am ahead by 40 commits:
$ git checkout master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 40 commits.
But when I then do a pull it says I ...
12
votes
1answer
2k views
Git: How to revert Master branch to upstream
Hi I have forked a git repository and setup upstream. I've made some changes in Master branch and committed and pushed to github.
Now what should I do to abandon all my changes in Master branch and ...
36
votes
2answers
8k views
Difference between HEAD and master
What is the difference between the HEAD and master in Git?
I did a clone of a project on GitHub and want to push my changes to the remote. But to which one should I push?
9
votes
2answers
1k views
How to view diff of a forked github project
I have forked a project on github and need to have a set of changes I made since I forked, in diff format.
If you wonder - I've forked Apache httpd and I'm changing some code in core. Currently I'm ...
8
votes
2answers
3k views
create a git symbolic ref in remote repository
In my remote bare repository the HEAD is pointing to "refs/heads/master" and I want it to point to "refs/heads/other".
I am not able to go to remote repository directory and run git symbolic-ref. Is ...