Tagged Questions
1
vote
2answers
64 views
Can I delete my fork before the pull request gets accepted?
I made a fork of a project on github, did a small correction and submitted a pull request. However, from every pull request “in line”, I can see that this developer will take a long time before ...
0
votes
2answers
57 views
how to go back after a bad git pull
I had created a shallow clone of a huge repository (for saving my time) using
git clone --depth=1 ...
Some days later, I thought I'd fetch the latest commits from the remote repository. I entered
...
0
votes
1answer
262 views
git pull using shell script
I have a shell script that pulls my repository from git.
Normally, it receives the credentials and the pull works just fine.
My question is what happens if the credentials are wrong and I get an ...
2
votes
1answer
1k views
Can checkout and track git branch, but cannot pull
So we have a branch in our git repo called creative_market. I run the command git checkout --track origin/creative_market which works fine. All of the changes that should be on the creative_market ...
1
vote
2answers
2k views
Git pulling without root access
On a Ubuntu Server 10.10 box, I seem to require root access to use git pull (in my /var/www directory). error: cannot open .git/FETCH_HEAD: Permission denied.
I have tried chmodding 0777 /var/www and ...
1
vote
1answer
487 views
Git pull/fetch doesn't seem to work
I am using git over hamachi vpn and am able to clone the remote repository.
However, git pull/fetch fails after hanging for a long time.
The error message displayed is:
Write failed: Broken pipe ...
1
vote
1answer
431 views
GIT : I keep having to merge my new branch
I have created a new branch and I'm working on it with others dev but for reasons when I want to push my new commits I always have to git merge origin/mynewbranch
Otherwise I'm getting some errors:
...