I was using Git shell for pulling data from GIT through (GIT pull) command.
But I am having some problems while pulling the data because of showing the message "as file too long".
while creating another separate clone I get the following error message:
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
So can we "GIT PULL" or "GIT PUSH" through cygwin and if yes can anyone share the steps ?
It can be done. I don't know what your issue is, but I can tell you that I can use git in cygwin just fine.
setup your git config. at a minimum, that means you'll need to open a bash prompt and type:
git config --global user.name [your name]git config --global user.email [your email]clone (i.e.,
git clone [repo])