dpalmasan / TRUNAJOD2.0

An easy-to-use library to extract indices from texts.
https://trunajod20.readthedocs.io/en/latest/
MIT License
29 stars 7 forks source link

implemented hapax legomena index #53

Open supersonic1999 opened 3 years ago

supersonic1999 commented 3 years ago

28

dpalmasan commented 3 years ago

I think to avoid the merge conflicts, you will need to set upstream the repo:

git remote add upstream git@github.com:dpalmasan/TRUNAJOD2.0.git

Then to fetch the commits (and branches) from the "upstream":

git fetch upstream

Then probably pulling changes in your local master branch: git pull. And your branch devissue-28 might need to be rebased from master git rebase master

supersonic1999 commented 3 years ago

I think to avoid the merge conflicts, you will need to set upstream the repo:

git remote add upstream git@github.com:dpalmasan/TRUNAJOD2.0.git

Then to fetch the commits (and branches) from the "upstream":

git fetch upstream

Then probably pulling changes in your local master branch: git pull. And your branch devissue-28 might need to be rebased from master git rebase master

Thanks for the info!