Hello Everyone!
I am new to use Altassian. I have once created repository and after few days i want to push new files. But, the problem is when clone my bitbucket account to local PC by using httpfile of clone(which we copy from source) i am not able to connect .it shows an error like : '' abort: destination 'newfoil' is not empty'' [i tried this in same destination where i first started with clone empty file].
Could some please explain/help me how i can clone it again?
Thanks in advance!
The error message is pretty clear here - there's already a directory named "newfoil", and it isn't empty, so Git refuses to replace what's in there. You can either rename the existing "newfoil", or you can delete the existing "newfoil", or you can send the new clone to a different directory (`git clone git@bitbucket.org:owner/repo.git newfoil2` will send that repo to the directory "newfoil2").
Thank you, Jim:)
So, Every time when I clone Bitbucket to local, Do I have to remove/delete the existed file which I created and pushed it to BitBucket?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.