This is the repository for the masterclass on encoding dictionaries with TEI at the Lisbon Summer School in Linguistics.
At the moment, it's quite empty, but don't worry, we'll fill it up with content during the week.
- Install GitHub Desktop on your computer
- Open GitHub Desktop
- Sign in with your GitHub credentials
- Go to https://github.com/BCDH/TEI-Lisbon2019
- Fork the repository
- Now (1) Make sure you are in the forked repository; (2) click on "Clone or download"; and (3) select "Open in Desktop"
- In GitHub Desktop choose where you want to save the TEI-Lisbon2019 clone on your computer
- If "Open in GitHub Desktop" doesn't work on your operating system, copy your forked repo's URL by clicking on the icon next to it. Then, in GitHub Desktop, go to File>Clone Repository; select the URL tab and paste the previously copied URL into the Repository URL input field. You can also choose where on your system will you save your clone. Remember it!
- Go to the TEI-Lisbon2019 folder on your computer.
- Inside the TEI-Lisbon2019 folder, go into the folder called "Participants"
- Inside "Participants", create a folder with your own full first and last name.
- Inside this folder, place the sample images/PDF files of your dictionary data.
- Go to GitHub Desktop. You should see something like this: Note the "Changes" tab and the "History" tab.
- Click on "Commit to master". After committing, you should be seeing something like this: Check the "History" tab to see your commit.
- Pay attention to the messages that GitHub is displaying to you and follow instructions to push to origin (i.e. to send your locally committed changes to your "origin", i.e. your forked repo.)
- Go to your fork on GitHub.com and you will see your first commit there.
This may seem very complicated at first, but, once you get the hang of it, it will become much easier.
- Locate your working copy.
Go to the folder where you cloned your fork. - Do your work.
- Commit your work.
This will save your initial work to your local working copy. - Push your work. This will save your intial work to your fork remotely.
- Create a pull request.
This will alert the repository admin person that there are changes that should be merged into the original repository.
Before you make your next contribution, you have to make sure that your local branch is up to date and in sync with the original repo. Remember, you made a fork off of the original repo at some point, but other people may have contributed to it in the meantime. So it's very important that you follow this procedure every time you start doing work on your branch again.
- In GitHub Desktop, in your local working copy, fetch origin.
This will check whether there were any changes made to your fork remotely (i.e. if you committed and pushed some stuff to your fork from a different computer) - If GitHub Desktop instructs you to pull origin, pull origin.
This will make sure that your local and your remote files are in sync. - Branch > Merge into current branch > Upstream/master
This will now, in addition, update your fork with all the contributions that have been merged into the original repo from other forks. Remember, each contributor works in their own fork. - If GitHub Desktop instructs you to push origin, push origin.
This will make sure that the changes from the original repo, which you've just added to your local master branch in the previous step, will also make it to your remote master branch. With your local and remote branches fully updated and sync you can finally get to do your work. - Do your work.
- Commit your work.
This will save your work to your local branch. - Push origin.
This will save your work to your remote branch. - Create a pull request.
This will alert the repository admin person that there are changes in your fork that should be merged into the original repository.