Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not pack git files when loading external git repository with extension #2

Open
matyaskopp opened this issue May 28, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@matyaskopp
Copy link
Member

Currently, this appears in PMLTQ extension, which is loaded with:

cd pmltq
if [ -d .git ]; then
echo "updating pmltq extension, removing all local changes !!!"
git reset --hard
git pull
else
echo "clonning pmltq extension from github"
git init
git remote add origin git@github.com:ufal/tred-extension-pmltq.git
git fetch
git checkout -t origin/master
fi

possible solutions are:

  1. use git archive instead of cloning the repository
  2. remove(/do not pack) hidden files from pmltq folder
@matyaskopp matyaskopp added the bug Something isn't working label May 28, 2024
@matyaskopp matyaskopp self-assigned this May 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant