Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clone only the .git directory of a git repo

I have a repo in sync with google Drive, but I had the .git directory ignored so it is now uploaded to Google Drive.

Recently I formatted my Gentoo machine and after I had all Google Drive files synced again I realized the .git directory was not there.

The problem is I do not remember if I had some unstagged/uncommited changes in local not pushed to github.

I have been searching but I only found answers for the opposite question (Cloning without the .git directory)

  • How do I clone a subdirectory only of a Git repository?
  • Cloning only a subdirectory with git
  • How to clone git repository only some directories?
  • Is it possible to clone only part of a git project?
  • Git Clone: Just the files, please?
  • Git clone without .git directory

I do not want to make a git clone of my repo until I am sure that possible local changes are not going to be loss.

Is there any way of cloning only the .git folder and then push any local changes that I may have in my machine?

like image 465
Alejandro Alcalde Avatar asked Aug 17 '16 14:08

Alejandro Alcalde


3 Answers

The one-step solution would be:

git clone --no-checkout <repo_url>

or if you already have an empty dir for it,

cd myrepo
git clone --no-checkout <repo_url> .
like image 113
rfay Avatar answered Sep 28 '22 15:09

rfay


Basically what you want is a fresh .git directory without any changes to files, so you can do git status and see if anything was changed.

Expecting your pwd is your project directory with an old .git directory that has the origin for the repository set up, you could run the following command:

mkdir -p /var/www/tmp/_delme \
    && git clone --no-checkout `cat .git/config | grep url | awk -F' = ' '{print $2}'` /var/www/tmp/_delme \
    && rm -rf .git \
    && mv /var/www/tmp/_delme/.git . \
    && git add -A
    && rm -rf /var/www/tmp/_delme
like image 20
Redsandro Avatar answered Sep 28 '22 16:09

Redsandro


  1. Do a git clone to a different folder on your machine from your online repo
  2. Checkout the branch that you're interested in comparing your local files against.
  3. Then copy/paste your folders contents over top the new clone.
  4. Check to see whats changed (if anything and commit as you would).
like image 45
g19fanatic Avatar answered Sep 28 '22 15:09

g19fanatic