Questions tagged [pull]

In distributed version control, pull or fetch is the action of transferring remote changes into a local repository.

In distributed version control, pull or fetch is the action of transferring remote changes into a local repository.

Examples:

970 questions
-1
votes
2 answers

Why can't "Git pull" pull all the branches from remote repo

I have a question about "git pull". Suppose I have a two remote branches "master" and "new_branch", when I use "git pull" and then use "git branch", only the "master" is shown. Why I can't see the "new branch"? I have to use "checkout new_branch" to…
Kent Lee
  • 107
  • 4
  • 13
-1
votes
1 answer

git pull error when trying to deploy to AWS EC2

I am trying to commit some new lines of code from my repository to Aws. I have everything synced on Github. Trying to do a pull from my repository to the EC2 instance. I ssh in to my EC2, no issues here, but when I do "git pull" (and enter in my…
srb
  • 45
  • 2
  • 11
-1
votes
1 answer

pulling website data using google script

I need help making this script that would pull the prices off a website and log it into spreadsheets with a date and timestamp, this was: function pullPrices() { var page = UrlFetchApp.fetch('http://www.apbcc.com').getContentText(); var number =…
-1
votes
1 answer

How to select each character from an input and set it as a variable?

I am trying to make a decoder from a batch file. It takes my input and turns it into an output by looking at each character. Here is what I have. @Echo Off :StartUpConfiguration Cls Color 0A Mode Con Cols=60 Lines=35 Title Decoder :Input Set /P…
-1
votes
2 answers

Issues while trying to execute git commands in server machine

I created a git environment locally.One system behaves like the server and I created another system as gituser(client).My server repository is a bare repository.I used this $ git clone --bare . ../../remote_repository.git for creating this bare…
ROOhhit
  • 1
  • 5
-1
votes
1 answer

Git reinitalising, when I want a new pull

How do I get a new pull? Each time I am trying to do it, it is pulling on the same git I had before, but I am trying to pull a new. How do I do that? I am not trying to do what you would normally do, which is update an existing one, as described…
Lucy Weatherford
  • 5,452
  • 16
  • 50
  • 76
-1
votes
4 answers

Use git as a means to sync/backup two macs

Here's my idea (which I'm currently testing as we speak): I just got a new macbook pro to use on the road, but I now have the problem of keeping it in sync with my main iMac easily. I'm very familiar with git and just see it as much easier to use…
user1610729
  • 169
  • 1
  • 5
-2
votes
1 answer

When I try to do a git pull I see new commit: Please enter a commit message to explain why this

Could you please help me. I have some problems with git pull. When I try to do a git pull I see new commit every time: Merge branch 'prod' of https://github.com/frontend into prod # Please enter a commit message to explain why this merge is…
Gleb
  • 9
  • 2
-2
votes
1 answer

git: pulling remote origin into a new repo

I have a remote repository that pulls into my local branch A. Now I created a new branch B from A. What is the command to pull changes of the remote repo into B?
user3443063
  • 1,455
  • 4
  • 23
  • 37
-2
votes
1 answer

I am performing the pull using git but i am getting this error. Any one know solution why i am getting this error?

git@github.com: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. enter image description here
kay_g
  • 3
  • 3
-2
votes
1 answer

What are the correct commands for pushing and pulling in GitHub with "main" rather than "master"?

I am a freshman computer science major trying to learn the basics of Git and GitHub using this very helpful video tutorial: https://www.udemy.com/course/git-expert-4-hours/. But, after listening to the videos about pushing and pulling, I'm confused…
Anna
  • 1
-2
votes
1 answer

Git push weird behavior

I am working on a branch called sofian/issue_533. I simply want to add the changes to the branch on git and somehow I can't. Here is a picture of what git is showing ... Thanks for the help !
Sox -
  • 592
  • 1
  • 9
  • 28
-2
votes
1 answer

pull style.css change from GitHub to online server

I can not drag the style.css change from my gitrepository to that it always comes up with the message: Already up-to-date and thats wrong.
katelor
  • 1
  • 1
-2
votes
1 answer

Whats the point of letting the user commit before pulling?

If a user commits local changes, and tries to push the changes to a repository that has new changes, the push will fail saying that there are unpulled changes. But if you try to pull the changes, it will fail because there are uncommited (to the…
Leo
  • 1,174
  • 11
  • 25
-2
votes
4 answers

Pulling and Pushing Repo

I am very new to using Github. I am only used to writing code in my local device. I need to pull a repo off of github, create a new file inside of the repo (Which will have my .java program), and push it back to github. I have looked online but the…
1 2 3
64
65