Questions tagged [git-clone]

Obtains a local copy of a remote Git repository.

1359 questions
0
votes
0 answers

Why git reset files to previous versions?

You see, I have a problem with git in my computer. I typed clone command in my console, but three files are modified right there to previous versions. so... when I open the IDE, the three files has modified tags. I tried clone command many times…
esleidera
  • 1
  • 2
0
votes
1 answer

Git Clone - Python Forum

I cloned https://spirit.readthedocs.io/en/latest/installation.html - awesome forum by the way. Because I want to use it as a boilerplate to make my own forum... First thing is I want to find out how to replace everything that say's Spirit , with…
0004
  • 1,156
  • 1
  • 14
  • 49
0
votes
2 answers

How to clone from a repository and bring all remote branches using git?

I Have repository 'A', I cloned from it to Repository 'B' using git clone http://example/A.git. So now, I have one local branch "master" and all other branches as remote branches in 'B'. Next Step, I want to clone from 'B' to a new Repository 'C'…
0
votes
0 answers

with in a vsts environment git as source code, is it possible clone and push a subfolder from one repository to another?

I come across a migration scenario where I have done a bare clone and mirror push and successfully done the migration to new Repository called A , but now I need to clone and push a subfolder from a different repository to A by maintaining the…
Jafar
  • 130
  • 3
  • 17
0
votes
1 answer

Using Dockerfile RUN to clone a bitbucket repo

I'm trying to clone a bitbucket repository from a dockerfile when running docker build -t newapi . So far the Dockerfile it looks like FROM node:alpine EXPOSE 3000 RUN git clone https://user:password@bitbucket.org/something/api.git If I run the…
kevLinK
  • 87
  • 2
  • 12
0
votes
1 answer

git clone giving errors

error: RPC failed; result=18, HTTP code = 200MiB | 243.00 KiB/s fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed I have made below git configurations but still not working.. [core] packedGitLimit = 512m …
Pragnesh Rupapara
  • 782
  • 1
  • 12
  • 30
0
votes
2 answers

fatal: pathspec 'editme.html' did not match any files

I have cloned a git public repo on Mac OSX. I made some changes to editme.html file and want to add and commit after that. But command line shows like this: dips-MacBook-Pro:test-repo kirandip$ git add editme.html fatal: pathspec 'editme.html' did…
K. Kaur
  • 59
  • 1
  • 1
  • 7
0
votes
3 answers

Git Hub remote: Password authentication is not available for Git operations

I am new to tortoise git and using for my Github enterprise. When I try to commit my files from Tortoise git , it works but when I try to push it throws me the below error remote: Password authentication is not available for Git operations. remote:…
siva shankaran
  • 11
  • 1
  • 1
  • 4
0
votes
0 answers

Getting error while cloning any thing from git in mac

Whenever I am trying to clone any repository from GitHub or bitbucket getting below error. I have updated my OS also. Could anyone please help me? I am using Mac Error Information: git-remote-https(640,0x7fffe1c733c0) malloc: *…
0
votes
0 answers

To (sub)clone / create only part of original repo / starting only from specific commit / sha

Is it possible to only clone (i put in title "sub" clone to highlight specifically I do not want to clone entire repo) parts of the repo, from very specific commit / sha? Or, from the start of only very specific one branch, ignoring entirely…
v01d
  • 189
  • 1
  • 12
0
votes
1 answer

Error while cloning flutter project from Github

I am trying to clone the following Flutter project from Github. https://github.com/rxlabz/flutter_dropcity But I am getting the following error in build.gradle using VS Code terminal. What went wrong: A problem occurred evaluating root project…
0
votes
1 answer

how to clone a git repository which has files with ">" symbol in the file name

The previous team created code in a bizzare naming convention. I'm looking to clone a git repository which has files with ">" symbol in the file name. Ex: "Data>1234.ipynb", "Data>5678.ipynb" etc. There are numerous files like that in the…
0
votes
1 answer

Cloning a local repository with submodules that is tracking a remote repo

Our compilation model consists on a super-project with 200 subprojects. My local copy tracks our development (remote) server. I need to make a clean clone of the super-project but I'm bandwidth limited as to fetch all that info from remote server…
cbuchart
  • 10,847
  • 9
  • 53
  • 93
0
votes
2 answers

how do I clone a git repository using node.js specific commands

I'm wanting to clone a git repository using node.js command prompt. What are the commands I need to use to create a project area and then clone the repo to it?
Mdaniels
  • 15
  • 1
  • 3
0
votes
1 answer

Git clone with authentication over HTTP protocol

I have a centos 7 server with a git repo shared over smart http, when I make "git push" the authentication works but when I make "git clone" not works. I want than Git and Apache ask me user and password to clone the repos. /var/www/git -> Is my…