Pushes the changes from a local Git repo to remote

learn more… | top users | synonyms

0
votes
0answers
20 views

Heroku Rails 4.0 app error

I am new to Ruby on rails and I am trying to deploy an app on Heroku. When I push to Heroku, everything seems fine but I get an application error when I got to the apps url. This is what my Heroku ...
0
votes
1answer
18 views

Do git-clean changes propagate to remote server on git push?

I have accidentally git cleaned my local repository and i know i can't get those untracked files back. But i want to know if this change will be propagated to remote server (when i git push) or not?? ...
2
votes
2answers
64 views

Git FULL push , no refs?

I am trying to push my .vim directory to github. I am using pathogen ,so under .vim/bundle , I have some plugins , which are git repos too. when I push to github they are converted to green folder ...
1
vote
0answers
54 views

Push to BitBucket from SourceTree

I am new with BitBucket and SourceTree and I try to push my Rep. in SourceTree for windows with Git to BitBucket but it gives me this error: conq: repository access denied. access via a deployment ...
0
votes
0answers
20 views

How to push the amended commit message to remote

I followed this thread on how to amend the commit message. It went well. But in the previous commit I pushed the updates to remote as well. Now once I changed the commit message, its rejecting the ...
1
vote
2answers
47 views

Remote Git Repository in document root

Im trying to use git for my website. The website is on our webserver. mkdir /home/website/public_html cd /home/website/public_html git --bare init Then I go to the local machine and change into the ...
3
votes
1answer
139 views

Pushing git subtree changes to upstream repository fails

I'm trying to ensure that git's subtrees will work for me before I incorporate it into my project. I encountered a problem when pushing subtree changes to the upstream repository. The setup is that ...
2
votes
1answer
57 views

git push -f: How to make sure other people catch up?

Note: I know git push -f questions are common, but I really couldn't easily find answers to this specific question anywhere. I want a comprehensive answer, not just something that somewhat solves my ...
1
vote
2answers
75 views

Push commit to 2 different remote branches?

I have two remote branches, branch A and branch B. Consider the case where I checkout branch A, made a commit and pushed. Now, I want to push the same commit to branch B. These two branches are ...
1
vote
0answers
53 views

Git sublime package does not work

Git diff in my sublime text throws following error error: Malformed value for push.default: simple error: Must be one of nothing, matching, tracking or current. fatal: bad config file line 7 in ...
2
votes
2answers
56 views

Afraid git commit and push will accidentally overwrite changes

I am working on a project with a friend using a remote git tool bitbucket.org. So far that we have been working on the master branch at different times, and then commit and push those changes to the ...
1
vote
0answers
52 views

Rolling back last commit on remote

I want to do exactly what it was asked in this question. I tried the answer but it didn't work. Here is what I did (I am on master): Checking if my local is equal to the remote: > git fetch > ...
0
votes
2answers
56 views

git push heroku master - FAIL

I added an SSH key to Github for committing my code. Everything worked perfectly. Then I tried to commit to Heroku to get my app live using the following steps: [omrails]$heroku keys:add # Found the ...
1
vote
1answer
35 views

git push NOT current branch to remote

Is there a way in git bare repository to push a branch that is not in HEAD right now? For example i have two branches: $ git branch * master another And i have two remotes set: origin and ...
0
votes
1answer
33 views

github push origin

I have some trouble pushing some changes to a branch on GitHub. I am quite new to Git and I am sure either I made something silly or I missed seomthing obvious, but I can't see what. I made a fresh ...
1
vote
1answer
31 views

Multiple unpublished commits - Unable to publish any. What's wrong?

So I'm using GitHub for Windows. And I have 4 unpublished commits (all 4 are the initial 4 commits). So technically, the repo hasn't been created yet on my GH account. To clarify, here's the commit ...
0
votes
0answers
16 views

Unable to connect using git fetch upstream [duplicate]

I'm trying to update my repo on local machine with the original-official one using git fetch upstream, but doing it shows the following error: fatal: unable to connect to git.moodle.org: ...
1
vote
0answers
23 views

Update forked Github repo with all branches

I forked a repository on my Github account that has over 1000 commits and 20 branches. I then cloned it on my local machine. Is there any way I can update both my local machine's repo and my ...
0
votes
2answers
20 views

Updating my Github repo from original one

I've forked official moodle repo from https://github.com/moodle/moodle and then cloned it on my local machine. The forked repo consists of about 12-15 branches. I want to update my Github repo with ...
1
vote
1answer
903 views

fatal: 'origin' does not appear to be a git repository

I've a repository moodle on my Github account which I forked from the official repository. I then cloned it on my local machine. It worked fine. I created several branches (under the master branch). ...
0
votes
1answer
33 views

How to merge pushed two commits?

I committed and pushed some files via git commit . followed by git push. Then, I found that there were some mistakes in the files. I fixed ti. Then, I recommitted and re-pushed. So, I now see two ...
1
vote
2answers
57 views

git: Why “Merge branch 'master' of … ”? when pull and push

I'm still git newbie. I modified some source files and committed. Then, I did git push. But, I got this error. To /foo/bar/ ! [rejected] master -> master (non-fast-forward) error: failed ...
0
votes
1answer
70 views

Getting error when trying to git push to remote branch (Heroku)

Hi I tried to push my local changes to heroku production but I am getting the following error Zhens-MacBook-Pro:Dailymuses-Server-Side zaikshev88$ git push heroku-production master:master To ...
1
vote
1answer
47 views

How to have clean git history

Just before pushing the local changes to the remote repository, git always asks us to sync local branch with remote branch . For that to happen, I am doing git pull first, then commit the pulled ...
0
votes
2answers
37 views

issues when trying to push a local repo to a github repo

I'm brand new to git and I'm having major issue when trying to push a local repo to github. I set up a remote repo called origin with my github repo SSH address. Then when I try to push I keep getting ...
0
votes
0answers
178 views

Github remote push pack size exceeded

I am new to Git and have a fairly large project that I want to push to a remote repo (Repo B) on Github. The original project was on Github as well but from a different repo (Repo A). I have to make ...
0
votes
1answer
106 views

Git push or pull doesn't work on remote server

I'm following Dan Eden's Github workflow guide. I've come across a problem when trying to push my changes to Github from my remote, using git push -u origin master. I've added all the files to the ...
1
vote
1answer
104 views

Every time I git push, I get this /etc/ghrc-secrets: Permission denied message

Every time I git push, I get a cryptic error message. The weird thing is, the push seems to go through just fine! Here's the full output: $ git push /data/github/shell/bin/gh-environment: line 84: ...
2
votes
2answers
241 views

Bitbucket :Git on Cygwin - Cannot push to remote repository

Updatedx3 (See below) So I was successfully using my Git Bitbucket repo for months up until 11/29/12. I did not try and make another commit until the other day (01/24/13) to no avail. I reinstalled my ...
0
votes
1answer
65 views

Git pulling and pushing when working in a team

I've started working on a project with another developer and have only just realised how limited my GIT knowledge is. Here's the deal: I've been making changes during this week, and want to push ...
0
votes
3answers
67 views

Github, push a new project in place of an old one

I have an iOS project setup to on github and over the past few days I have started to realize that I need to refactor most of my code. I build the project not abiding by many of the basics of MVC and ...
0
votes
0answers
130 views

NetBeans does not allow to push into remote GIT branch (no branch)

I'm new to GIT VCS so I'm kind of lost. I'm using NetBeans 7.2.1 and working on PHP project with remote GIT repository. I cloned GIT repository, during that process i checked all remote branches. ...
0
votes
3answers
106 views

How to use git ? git-commit ? git-push?

I am working on a website, and I need to use Git for practical reasons. However, I think I have not totally understood how it works. I want to do something quite simple, and I am working on ...
1
vote
1answer
52 views

Git for live site deployment : How to get files from the live version?

From my Workstation, I can “push” modification to a git bare repository on my server, which contains a Hook that runs "git checkout -f", so I can deploy my site via Git. The thing is that users of my ...
1
vote
2answers
121 views

Git gives 'non-fast-forward updates' error even after 'git pull'

Github is the default repository for my project (just "origin" renamed to "github"). Something has happened so that "git push" causes a "non-fast-forward updates" error, even though "git push github ...
1
vote
2answers
91 views

How to make git push run faster [closed]

Is there a way to tell git to push the changes to the github remote server a little faster. It takes a longer time (~8-10 secs) even for minor changes on few files in a bare minimal rails application. ...
3
votes
0answers
734 views

Failing to push git to Heroku port 22: bad file number

After creating my rails project, pushing it into the GIT repo, was not able to push it to Heroku. When I run the command: git push heroku master I get this error: ssh: connect to host heroku.com ...
2
votes
1answer
374 views

“failed to lock” error

I need some help resolving an error when I push a branch from my local repo to a thumb drive. I believe the problem was caused by switching back and forth between different drives. In particular, I ...
0
votes
2answers
91 views

GIt push from local to local

I am trying to add a second local repo on my local machine. So I created a directory, made a git init there and then I ran : git remote add new_repo /path/.git Then from my local repo, I ran git push ...
1
vote
1answer
90 views

Git : Do not allow users to push a new branch to remote repo

Sometimes by mistake some of users tend to push their local branches to a remote repo creating a new branch on the remote repo. How can we disallow the users to create new branches on a remote repo ...
-1
votes
1answer
42 views

Git -push error [duplicate]

Possible Duplicate: Git Fast-Forward Merge requires a pull first Pushing to git@github.com:ravi-saxena/locpla.git Error : To git@github.com:ravi-saxena/locpla.git ! [rejected] ...
1
vote
1answer
33 views

git search local history

I made a couple commits without making a git push. After that I made a git push and know I can't find these commits that were only local. Can I somehow find those commits that I didn't push to remote ...
0
votes
1answer
378 views

git hangs on push

I cannot push to github. I was able to push little changes, but this time, it hangs after it writes this: git push origin master Counting objects: 22, done. Delta compression using up to 4 threads. ...
1
vote
1answer
73 views

Reopen accepted change in Gerrit

A previous code that I sent into Gerrit was accepted and merged into the master branch, but it turned out that the solution was not cost effective enough so I had to modify it. It is now ready again ...
0
votes
3answers
95 views

For Ruby on Rails project pull request, git push to my fork failing

I made fixes and tests, git commit -a, updated my branches and now I'm trying to push to a GitHub fork I had previously made: vagrant@rails-dev-box:~/rails$ git push mine my_fix Username for ...
1
vote
3answers
176 views

git push branch without merge

I have one branch master on the server (remote). I created new local branch that doesn't exist on the remote (server). How can I add (push) the branch to the remote (server) without merging it with ...
1
vote
4answers
276 views

How to push a single file in a subdirectory to Github (not master)

I have changed a single file in a subdirectory of my repository and I want to push just that file to Github, since it's a small file with small changes, rather than the entire master repo (which takes ...
0
votes
1answer
241 views

How to properly push one git repository over another on codebasehq?

I need to know the proper way to move git history from one repository to another on codebasehq.com. Situation: there is a repo on codebasehq.com which I call "old" on path like ...
1
vote
1answer
41 views

SSL eror while trying to push to github

This is a REPO I just created (my first one) so I might have set it up wrongly. When I try to PUSH the code from my machine to the REPO on GIT, I get: error:14090086:SSL ...
0
votes
2answers
172 views

GIT hook to prevent an experimental branch pushed to a release, or master branch

We have three main branches in our workflow. TEST (experimental), RELEASE (features going to next release), and MASTER (released only) We take feature branches from RELEASE, merge feature branches ...

1 2 3 4 5