Tagged Questions

4
votes
3answers
524 views

Undoing a git push

I just did a doodoo, and in need of some help :) Here's what I did on my supposed-to-be-stable branch... % git rebase master First, rewinding head to replay your work on top of it... Fast-forwarded …
0
votes
1answer
27 views

Rebase-push cycles for git branches

I'm currently using a github repository with a single branch, based of a master branch of another repository. The github branch is a backup of my work, and definitely not meant for pulling, and as …
0
votes
3answers
236 views

“git push” failed: “You did not specify any refspecs to push”

I set up a git project on projectlocker to push my git files to. Then I went into the directory where I had initialized a git project and staged my files. And finally I tried to push the project to …
2
votes
1answer
106 views

Why “git push helloworld +master:master” instead of just “git push helloworld”?

I tried to push my (first ever!) git repo like this initially: $ git push helloworld But I got this back: To git-smichaels@free5.projectlocker.com:helloworld.git ! [rejected] HEAD -> …
2
votes
2answers
117 views

Git: how to make remote directory update when pushed to?

I want to use git to manage some data on a remote server, so I set up a non-bare repository there. I can push to it without problems, and the repository itself updates but the actual files are not …
5
votes
3answers
135 views

Using git right (for private repo website code)?

This may be a question about convention, best practices and/or personal preferences: So I'm a git noob, and my website code is not worth sharing, so I'm not using github or the like. Knowing that …
3
votes
3answers
328 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 …
4
votes
2answers
575 views

GIT - Push only to a remote branch

Hi, I'm working on a local repo, theres 2 branches, the master and the feature_x I wanna push feature_x to remote, but dont wanna push the changes on master branch. Doing a "git push origin …
2
votes
2answers
465 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 …