Tagged Questions

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 ...
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
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 ...
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
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 ...
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
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
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 ...
1
vote
2answers
37 views

How can I setup a non-bare git repo on my server?

I'm trying to setup a decent development pattern with my friend. The plan is that we do independent development on our own computers, then push to the dev server for testing, and then we push from ...
1
vote
1answer
110 views

git pull analogous to / opposite of git push -f?

Sometimes, esp. when I'm the only one working on a remote repository, I like rewriting the history with git rebase -i and git push origin master -f. How do I do a forced git pull origin master ...
1
vote
1answer
146 views

How do I setup git to push and pull from the current branch?

So I have two tracked branches in my repo, 'testing' and 'master'. These are tracking to the same named branches on my remote server. I have the .gitconfig option for push.default set to 'tracking'. ...
1
vote
1answer
293 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
2answers
415 views

Git over port 443

I have a git repository on my server i can ssh over port 443. But now i want to pull from that server and push to it but git gives me connection refused. I think it's connecting over port 22 but i ...
0
votes
3answers
79 views

Permissions for .git/ for each working directory

I get this error every time I git push. Only for this working directory. Not in another similar one, where from what I can tell has the same permissions. $ git push Counting objects: 15, done. ...