Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.36 KB

next_steps.md

File metadata and controls

40 lines (28 loc) · 1.36 KB

Next steps

Put the generated files under version control

Once your Python package is created, put it under version control using git and GitHub.

cd quafing
git init
git add --all
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/https://github.com/SDCCA/quafing

Push the initial commit to a new repo on GitHub

Go to https://github.com/organizations/https://github.com/SDCCA/repositories/new and create a new repository named quafing as an empty repository, then push your commits to GitHub:

git push --set-upstream origin main

Check automatically generated issues

A short while after you push your commits to GitHub for the first time, a few issues outlining next steps will added automatically (here). Resolve them to complete the setup of your repository.

Project development documentation

The README.dev.md contains developer documentation.

Project layout explained

For an explanation of what files are there, and what each of these do, please refer to project_setup.md.