Questions tagged [git-push]

Pushes the changes from a local Git repo to remote

git push is used to push the data and branch changes from your local Git repository to remote.

Popular questions

See also

References

$ git push --help
1705 questions
0
votes
1 answer

Errors on Push on Git followed by errors on Pull and Workspace

I'm really new on git, and things are really complicated. I really need all of your help! I don't know where is the mistake so I will tell my all story from the beginning. I was working on another computer, and were able to push without an issue.…
Kutay Demireren
  • 640
  • 1
  • 10
  • 25
0
votes
2 answers

How can I stop my second app deploying to the URL in Heroku?

I'm simultaneously working on two different Ruby on Rails apps and deploying to Heroku. However, when I try to push the 2nd app to heroku, it overwrites the first one. How can I stop this from happening? I've gone through the different stages:…
asaignment
  • 941
  • 2
  • 8
  • 12
0
votes
1 answer

SourceTree: dst ref refs/heads/master receives from more than one src

I don't understand this git (sent via SourceTree) error, and I have no idea why it is happening. I simply commit to my own repository, working alone on the project. What could i try to do? git -c diff.mnemonicprefix=false -c core.quotepath=false…
SL5net
  • 2,282
  • 4
  • 28
  • 44
0
votes
0 answers

Sass::SyntaxError: Invalid CSS rails cap deploy

After cap deploy I am getting an error Sass::SyntaxError: Invalid CSS after "...lings';src:url(": expected ")", was "<%= asset_path"..." Please help me.Thanks.
AGM
  • 391
  • 1
  • 6
  • 14
0
votes
1 answer

git push and fetch annotated tag does not create the tag

I just created an annotated tag on machine A, then pushed the tag to the server S: @A$ git tag -a v1 -m"Release version 1" @A$ git push origin_on_S v1 Then on machine B, I tried to fetch the tag: @B$ git fetch origin v1 I got the commit, but not…
Gauthier
  • 40,309
  • 11
  • 63
  • 97
0
votes
0 answers

How to pull and push sub directory in Git

My requirement is to pull and push files only for particular folder from the master repo. The method I am using is only helping me in pulling files for particular folder but not in pushing. So in my master repo I have folder structure something…
rohit rawat
  • 1
  • 1
  • 4
0
votes
0 answers

Git push: fatal: write error: Permission denied after pulling a bundle

I read about the other questions but none of the solutions could help. We have a git repository on Windows and a clone on a CentOS_6 Machine. I am working on a branch, so i have a local branch on Linux with the same name of the remote branch and…
0
votes
1 answer

Redirecting a git push

I am currently playing with hooks to get our repositories to tell Jenkins to build, etc. I have been looking for information on how I would be able to redirect a push to another repo, or even if this is possible? So for example developer pushes to…
Grinch91
  • 952
  • 7
  • 15
0
votes
1 answer

git push does not update remote workdir

I do execute the following steps to create on DEBIAN Server 1) git bare repo; 2) a working dir, where the files are copied after local git push; 3) a local clone on Windows, bare server repo is cloned. I executed the following commands: # SERVER:…
klor
  • 1,237
  • 4
  • 12
  • 37
0
votes
2 answers

Push metor app to the online git remote

After doing: $ meteor deploy myapp.meteor.com how can I push new changes so that it update the version that is on line (myapp.meteor.com) ? How can I push to the online remote if there is like I would with heroku by doing git push heroku master…
Antoine
  • 559
  • 8
  • 21
0
votes
2 answers

how can i get the correct access to github so i can push repo's?

when i try to push something form local git to github this happens & i don't know how to solve that . warning :permanently added the RSA host key for ip addres '......' to the list of known hosts permission denied (publickey) fatal:could not read…
E.khaled
  • 49
  • 2
0
votes
1 answer

TFS Team Build with VSO - Git Commit/Push files that have been altered by the build process

I have created a build definition that uses the Default Template(GitTemplate.12.xaml). I have a Pre-Build Script that updates the version numbers for all of the assemblies in the build. I would like to be able to commit and push the files that have…
0
votes
1 answer

Git post-receive hook for push-to-deploy .. I want to checkout last pushed branch

I am able to implement push-to-deploy with Git by creating a bare repo on the server, and pushing to that from my dev. Below is my post-receive which handles updating the live site: #!/bin/sh echo echo "*** Checking out branch [post-receive…
Martyn
  • 6,031
  • 12
  • 55
  • 121
0
votes
1 answer

getting error while pushing project from xcode 6.2 to bitbucket

I am getting following error while pushing whole project to bitbucket from xcode. I'm sure Im the only who is trying to pushing on a same time.
Mrugesh Tank
  • 3,495
  • 2
  • 29
  • 59
0
votes
1 answer

Can't find my git repository url

So I think I am confused - but for some reason I cannot push or pull to my git repository. I have a linux web server and have a web folder in /var/www/bcs.net.nz/ I did a git init bcs.git in this folder (I have also tried .git) and then I thought I…
jwknz
  • 6,598
  • 16
  • 72
  • 115
1 2 3
99
100