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)
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?
I solve it. It was an easy process:
/tmp
).git
folder into my original repo foldergit status
on my original repo folder and all the local changes were there.Hope it helps others