I have a project with git, and I just want to clone or pull a specific directory, like myproject/javascript just like subversion does.
make some changes, commit and push back again.
It’s possible?
I have a project with git, and I just want to clone or pull
Share
git fetchgit checkout HEAD path/to/your/dir/or/fileWhere “
path/...” in (3) starts at the directory just below the repo root containing your “.../file“NOTE that instead of “HEAD”, the hash code of a specific commit may be used, and then you will get the revision (file) or revisions (dir) specific to that commit.